Module stomp_parser::client[][src]

Expand description

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

Structs

AbortFrame

Aborts a transaction that has begun but not yet been committed.

AckFrame

Acknowledges a received message.

BeginFrame

Begins a transaction.

CommitFrame

Commits a transaction.

ConnectFrame

Initiates a STOMP session.

DisconnectFrame

Ends a STOMP session.

NackFrame

Indicates that the client did not, or could not, process a message.

SendFrame

Sends a message to a specific destination.

SubscribeFrame

Subscribes to a specific destination.

UnsubscribeFrame

Cancels a specific subscription.

Enums

ClientFrame

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