dart_pgmq library

Classes

DatabaseConnection
The DatabaseConnection class provides methods to establish a connection to a postgresql database.
ErrorCatcher
GenericPgmqException
A generic exception class for the Pgmq package.
Message
A Message class that contains information about a message.
PausableTimer
A Timer that can be paused, resumed and reset.
Pgmq
An abstract class that provides an interface for creating and managing a postgresql message queues.
PgmqException
An abstract class representing an exception thrown by the Pgmq package.
PoolConnectionOptions
The PoolConnectionOptions class that contain options to be used as PoolSettings.
Queue
An abstract class that represents a postgresql message queue.

Typedefs

CanHaveError<T> = (PgmqException?, T?)
OnLeft<T> = T Function(PgmqException)
OnRight<R, T> = R Function(T)