PgMqDbAdapterR2dbc
class PgMqDbAdapterR2dbc(connectionFactory: PostgresqlConnectionFactory, pool: ConnectionPool) : PgMqDbAdapter(source)
Implementation of the PgMqDbAdapter interface using R2DBC for asynchronous interaction with a PostgreSQL database.
This class provides an abstraction layer to handle database operations such as executing SQL statements, fetching results, managing transactions, and listening to PostgreSQL notifications on specified channels.
Parameters
pool
The connection pool used for acquiring database connections.
connectionFactory
The factory for creating individual PostgreSQL connections.