public static interface PgEventEndpointBuilderFactory.PgEventBuilders
| Modifier and Type | Method and Description |
|---|---|
default PgEventEndpointBuilderFactory.PgEventEndpointBuilder |
pgevent(String path)
PostgresSQL Event (camel-pgevent)
Send and receive PostgreSQL events via LISTEN and NOTIFY commands.
|
default PgEventEndpointBuilderFactory.PgEventEndpointBuilder |
pgevent(String componentName,
String path)
PostgresSQL Event (camel-pgevent)
Send and receive PostgreSQL events via LISTEN and NOTIFY commands.
|
default PgEventEndpointBuilderFactory.PgEventEndpointBuilder pgevent(String path)
pgevent:host:port/database/channel
Path parameter: host
To connect using hostname and port to the database.
Default value: localhost
Path parameter: port
To connect using hostname and port to the database.
Default value: 5432
Path parameter: database (required)
The database name. The database name can take any characters because
it is sent as a quoted identifier. It is part of the endpoint URI, so
diacritical marks and non-Latin letters have to be URL encoded.
Path parameter: channel (required)
The channel namepath - host:port/database/channeldefault PgEventEndpointBuilderFactory.PgEventEndpointBuilder pgevent(String componentName, String path)
pgevent:host:port/database/channel
Path parameter: host
To connect using hostname and port to the database.
Default value: localhost
Path parameter: port
To connect using hostname and port to the database.
Default value: 5432
Path parameter: database (required)
The database name. The database name can take any characters because
it is sent as a quoted identifier. It is part of the endpoint URI, so
diacritical marks and non-Latin letters have to be URL encoded.
Path parameter: channel (required)
The channel namecomponentName - to use a custom component name for the endpoint
instead of the default namepath - host:port/database/channelApache Camel