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§
- Abort
Frame - Aborts a transaction that has begun but not yet been committed.
- Abort
Frame Builder - Aborts a transaction that has begun but not yet been committed.
- AckFrame
- Acknowledges a received message.
- AckFrame
Builder - Acknowledges a received message.
- Begin
Frame - Begins a transaction.
- Begin
Frame Builder - Begins a transaction.
- Commit
Frame - Commits a transaction.
- Commit
Frame Builder - Commits a transaction.
- Connect
Frame - Initiates a STOMP session.
- Connect
Frame Builder - Initiates a STOMP session.
- Disconnect
Frame - Ends a STOMP session.
- Disconnect
Frame Builder - Ends a STOMP session.
- Nack
Frame - Indicates that the client did not, or could not, process a message.
- Nack
Frame Builder - Indicates that the client did not, or could not, process a message.
- Send
Frame - Sends a message to a specific destination.
- Send
Frame Builder - Sends a message to a specific destination.
- Subscribe
Frame - Subscribes to a specific destination.
- Subscribe
Frame Builder - Subscribes to a specific destination.
- Unsubscribe
Frame - Cancels a specific subscription.
- Unsubscribe
Frame Builder - Cancels a specific subscription.
Enums§
- Client
Frame - The
ClientFrame
enum contains a variant for each frame that the client can send.