Package coilmq :: Package server :: Class StompConnection
[frames] | no frames]

Class StompConnection

object --+
         |
        StompConnection

An "interface" for server implementation classes to "implement".

This class serves primarily as a means to document the API that CoilMQ will expect the connection object to implement.

Instance Methods
 
send_frame(self, frame)
Uses this connection implementation to send the specified frame to a connected client.

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables
  __metaclass__ = abc.ABCMeta
Instance Variables
bool reliable_subscriber = False
Whether this client will ACK all messages.
Properties

Inherited from object: __class__

Method Details

send_frame(self, frame)

 

Uses this connection implementation to send the specified frame to a connected client.

Parameters:
  • frame (stompclient.frame.Frame) - The STOMP frame to send.
Decorators:
  • @abc.abstractmethod