Received error from the broker.
Build and manage a STOMP Frame.
| Parameters: | 
 | 
|---|
Raw string representation of this frame Suitable for passing over a socket to the STOMP server.
Example
>>> stomp.send(frameobj.as_string())
Build a frame based on a dict of arguments.
| Parameters: | 
 | 
|---|
Example
>>> frame = frameobj.build_frame({"command": 'CONNECT',
                                  "headers": {},
                                  want_receipt=True)
Connect to the STOMP server and get the session id.
| Parameters: | 
 | 
|---|
Get next message frame.
| Parameters: | 
 | 
|---|
Get command reply frame.
| Parameters: | 
 | 
|---|
Parse command received from the server.
| Parameters: | 
 | 
|---|
Parse data from socket
| Parameters: | 
 | 
|---|
Example
>>> frameobj.parse_frame()
Parse headers received from the servers and convert to a dict.i
| Parameters: | 
 | 
|---|
Internal message queue that holds messages received by the server.
This to make sure a message isn’t received instead of a command response after issuing a receipt request.
An unexpected response was received from the broker.