Module client

Source
Expand description

Implements the model for the frames that a STOMP client can send, as specified in the STOMP Protocol Specification,Version 1.2.

Structs§

AbortFrame
Aborts a transaction that has begun but not yet been committed.
AbortFrameBuilder
Aborts a transaction that has begun but not yet been committed.
AckFrame
Acknowledges a received message.
AckFrameBuilder
Acknowledges a received message.
BeginFrame
Begins a transaction.
BeginFrameBuilder
Begins a transaction.
CommitFrame
Commits a transaction.
CommitFrameBuilder
Commits a transaction.
ConnectFrame
Initiates a STOMP session.
ConnectFrameBuilder
Initiates a STOMP session.
DisconnectFrame
Ends a STOMP session.
DisconnectFrameBuilder
Ends a STOMP session.
NackFrame
Indicates that the client did not, or could not, process a message.
NackFrameBuilder
Indicates that the client did not, or could not, process a message.
SendFrame
Sends a message to a specific destination.
SendFrameBuilder
Sends a message to a specific destination.
SubscribeFrame
Subscribes to a specific destination.
SubscribeFrameBuilder
Subscribes to a specific destination.
UnsubscribeFrame
Cancels a specific subscription.
UnsubscribeFrameBuilder
Cancels a specific subscription.

Enums§

ClientFrame
The ClientFrame enum contains a variant for each frame that the client can send.