consolidated/rx-stomp/src/rx-stomp.ts
This is the main Stomp Client. Typically, you will create an instance of this to connect to the STOMP broker.
This wraps an instance of @stomp/stompjs Client.
The key difference is that it exposes operations as RxJS Observables. For example, when a STOMP endpoint is subscribed it returns an Observable that will stream all received messages.
With exception to beforeConnect, functionality related to all callbacks in @stomp/stompjs Client is exposed as Observables/Subjects/BehaviorSubjects.
RxStomp also tries to transparently handle connection failures.
Part of @stomp/rx-stomp
Properties |
|
Methods |
|
Accessors |
Public
constructor(stompClient?: Client)
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:175
|
Constructor @stomp/stompjs Client to wrap. If this is not provided, a client will be constructed internally. |
Public Readonly connected$ |
Type : Observable<RxStompState>
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:63
|
Will trigger when connection is established.
It will trigger every time a (re)connection occurs.
If it is already connected, it will trigger immediately.
You can safely ignore the value, as it will always be |
Public Readonly connectionState$ |
Type : BehaviorSubject<RxStompState>
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:55
|
Connection State It is a BehaviorSubject and will emit current status immediately. This will typically get used to showing current status to the end user. |
Public Readonly serverHeaders$ |
Type : Observable<StompHeaders>
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:78
|
Provides headers from the most recent connection to the server as returned by the CONNECTED frame. If the STOMP connection has already been established, it will trigger immediately. It will trigger for each (re)connection. |
Public Readonly stompErrors$ |
Type : Subject<IFrame>
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:133
|
It will stream all ERROR frames received from the STOMP Broker. A compliant STOMP Broker will close the connection after this type of frame. Please check broker specific documentation for exact behavior. This Observer will yield the received IFrame objects. Maps to: Client#onStompError |
Public Readonly unhandledFrame$ |
Type : Subject<IFrame>
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:108
|
This will yield any unhandled frame. Normally, you should not receive anything here unless a non-compliant STOMP broker is in use or an error. This Observer will yield the received IFrame objects. Maps to: Client#onUnhandledFrame |
Public Readonly unhandledMessage$ |
Type : Subject<IMessage>
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:95
|
This will yield any unhandled messages. It is useful for receiving messages sent to RabbitMQ temporary queues. It may also yield stray messages while the server is processing a request to unsubscribe from an endpoint. This Observer will yield the received IMessage objects. Maps to: Client#onUnhandledMessage |
Public Readonly unhandledReceipts$ |
Type : Subject<IFrame>
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:120
|
STOMP brokers can be requested to notify when an operation is actually completed. Prefer using asyncReceipt. This Observer will yield the received IFrame objects. Maps to: Client#onUnhandledReceipt |
Public Readonly webSocketErrors$ |
Type : Subject<Event>
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:143
|
It will stream all web socket errors. This Observer will yield the received Event. Maps to: Client#onWebSocketError |
Public activate |
activate()
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:301
|
Initiate the connection with the broker. If the connection breaks, as per RxStompConfig#reconnectDelay, it will keep trying to reconnect. Call RxStomp#deactivate to disconnect and stop reconnection attempts. Maps to: Client#activate
Returns :
void
|
Public asyncReceipt | ||||||
asyncReceipt(receiptId: string)
|
||||||
Defined in consolidated/rx-stomp/src/rx-stomp.ts:625
|
||||||
STOMP brokers may carry out operation asynchronously and allow requesting for acknowledgement.
To request an acknowledgement, a A complaint broker will send a RECEIPT frame when an operation has actually been completed. The operation needs to be matched based on the value of the receipt-id. This method allows watching for a receipt and invoking the callback when the corresponding receipt has been received. The promise will yield the actual IFrame. Example: Maps to: Client#watchForReceipt
Parameters :
Returns :
Promise<IFrame>
|
Public configure | ||||||
configure(rxStompConfig: RxStompConfig)
|
||||||
Defined in consolidated/rx-stomp/src/rx-stomp.ts:269
|
||||||
Set configuration. This method may be called multiple times. Each call will add to the existing configuration. Example: Maps to: Client#configure
Parameters :
Returns :
void
|
Public connected |
connected()
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:367
|
It will return
Returns :
boolean
|
Public Async deactivate | ||||||||
deactivate(options: literal type)
|
||||||||
Defined in consolidated/rx-stomp/src/rx-stomp.ts:354
|
||||||||
Disconnect if connected and stop auto reconnect loop. Appropriate callbacks will be invoked if the underlying STOMP connection was connected. To reactivate, you can call RxStomp#activate. This call is async. It will resolve immediately if there is no underlying active websocket, otherwise, it will resolve after the underlying websocket is properly disposed of. Experimental: Since version 2.0.0, pass Maps to: Client#deactivate
Parameters :
Returns :
Promise<void>
|
Public publish | ||||||
publish(parameters: IRxStompPublishParams)
|
||||||
Defined in consolidated/rx-stomp/src/rx-stomp.ts:427
|
||||||
Send a message to a named destination. Refer to your STOMP broker documentation for types and naming of destinations. STOMP protocol specifies and suggests some headers and also allows broker-specific headers.
To send a binary message body, use binaryBody parameter. It should be a Uint8Array. Sometimes brokers may not support binary frames out of the box. Please check your broker documentation. The Caution: The broker will, most likely, report an error and disconnect if the message body has NULL octet(s)
and The message will get locally queued if the STOMP broker is not connected. It will attempt to
publish queued messages as soon as the broker gets connected.
If you do not want that behavior,
please set retryIfDisconnected to Maps to: Client#publish See: IRxStompPublishParams and IPublishParams
Parameters :
Returns :
void
|
Public watch | ||||||
watch(opts: IWatchParams)
|
||||||
Defined in consolidated/rx-stomp/src/rx-stomp.ts:475
|
||||||
It will subscribe to server message queues This method can be safely called even if the STOMP broker is not connected. If the underlying STOMP connection drops and reconnects, by default, it will resubscribe automatically. See IWatchParams#subscribeOnlyOnce also. Note that messages might be missed during reconnect. This issue is not specific to this library, but the way STOMP brokers are designed to work. This method has two alternate syntaxes, use IWatchParams if you need to pass additional options. Maps to: Client#subscribe
Parameters :
Returns :
Observable<IMessage>
|
Public watch | ||||||||||||
watch(destination: string, headers?: StompHeaders)
|
||||||||||||
Defined in consolidated/rx-stomp/src/rx-stomp.ts:482
|
||||||||||||
See the other variant for details.
Parameters :
Returns :
Observable<IMessage>
|
Public watch | ||||||||||||
watch(opts: string | IWatchParams, headers: StompHeaders)
|
||||||||||||
Defined in consolidated/rx-stomp/src/rx-stomp.ts:486
|
||||||||||||
Parameters :
Returns :
Observable<IMessage>
|
Public watchForReceipt |
watchForReceipt(receiptId: string, callback: (frame: IFrame) => void)
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:593
|
Deprecated Please use asyncReceipt.
Returns :
void
|
stompClient |
getstompClient()
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:157
|
Instance of actual @stomp/stompjs Client. Be careful in calling methods on it directly - you may get unintended consequences.
Returns :
Client
|
active |
getactive()
|
Defined in consolidated/rx-stomp/src/rx-stomp.ts:376
|
If the client is active (connected or going to reconnect). Maps to: Client#active
Returns :
boolean
|