![]() |
Habari STOMP Client for RabbitMQ 9.4
Object Pascal STOMP client library for RabbitMQ
|
Variables | |
| const | DEFAULT_BROKER_URL = "stomp://127.0.0.1" |
| The default broker URL. | |
| const | DEFAULT_STOMP_PORT = 61613 |
| The default broker port for STOMP. | |
| const | DEFAULT_USER = "guest" |
| The default user name. | |
| const | DEFAULT_PASSWORD = "guest" |
| The default password. | |
| const | DEFAULT_PRIORITY = 0 |
| Default message priority. | |
| const | MIN_PRIORITY = 0 |
| Minimum priority. | |
| const | MAX_PRIORITY = 255 |
| Maximum priority. | |
| const | SH_AUTO_DELETE = "auto-delete" |
| RabbitMQ specific header which prevents durable topic destinations from being removed. | |
| const | SH_NOLOCAL = "no-local" |
| const | SH_DEFAULT_STOMP_VERSION = "1.2" |
| const | SH_EXPIRATION = "expiration" |
| const | DEST_PREFIX_TOPIC = "/topic/" |
| const | DEST_PREFIX_QUEUE = "/queue/" |
| const | DEST_PREFIX_EXCHANGE = "/exchange/" |
| const | DEST_PREFIX_REPLY_QUEUE = "/reply-queue/" |
| const | DEST_PREFIX_TEMP_QUEUE = "/temp-queue/" |
| const | DEST_PREFIX_AMQ_QUEUE = "/amq/queue/" |
| const DEFAULT_BROKER_URL = "stomp://127.0.0.1" |
The default broker URL.
| const DEFAULT_PASSWORD = "guest" |
The default password.
| const DEFAULT_PRIORITY = 0 |
Default message priority.
For RabbitMQ, the value is 0. https://www.rabbitmq.com/priority.html
| const DEFAULT_STOMP_PORT = 61613 |
The default broker port for STOMP.
| const DEFAULT_USER = "guest" |
The default user name.
| const DEST_PREFIX_AMQ_QUEUE = "/amq/queue/" |
| const DEST_PREFIX_EXCHANGE = "/exchange/" |
| const DEST_PREFIX_QUEUE = "/queue/" |
| const DEST_PREFIX_REPLY_QUEUE = "/reply-queue/" |
| const DEST_PREFIX_TEMP_QUEUE = "/temp-queue/" |
| const DEST_PREFIX_TOPIC = "/topic/" |
| const MAX_PRIORITY = 255 |
Maximum priority.
For RabbitMQ, the value can be set per queue. The message priority field is defined as an unsigned byte, so in practice priorities should be between 0 and 255.
The Habari STOMP Client library only prevents application code from setting a priority higher than 255.
| const MIN_PRIORITY = 0 |
Minimum priority.
| const SH_AUTO_DELETE = "auto-delete" |
RabbitMQ specific header which prevents durable topic destinations from being removed.
| const SH_DEFAULT_STOMP_VERSION = "1.2" |
| const SH_EXPIRATION = "expiration" |
| const SH_NOLOCAL = "no-local" |