1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
"""stomp.py provides connectivity to a message broker supporting the STOMP protocol.
Protocol versions 1.0, 1.1 and 1.2 are supported.
See the GITHUB project page for more information.
Author: Jason R Briggs |br|
License: http://www.apache.org/licenses/LICENSE-2.0 |br|
Project Page: https://github.com/jasonrbriggs/stomp.py
"""
import stomp.adapter as adapter
import stomp.connect as connect
import stomp.listener as listener
import stomp.logging as logging
__version__ = (8, 1, 0)
##
# Alias for STOMP 1.0 connections.
#
Connection10 = connect.StompConnection10
StompConnection10 = Connection10
##
# Alias for STOMP 1.1 connections.
#
Connection11 = connect.StompConnection11
StompConnection11 = Connection11
##
# Alias for STOMP 1.2 connections.
#
Connection12 = connect.StompConnection12
StompConnection12 = Connection12
WSConnection = adapter.ws.WSStompConnection
WSStompConnection = WSConnection
##
# Default connection alias (STOMP 1.1).
#
Connection = connect.StompConnection11
##
# Access to the default connection listener.
#
ConnectionListener = listener.ConnectionListener
##
# Access to the stats listener.
#
StatsListener = listener.StatsListener
##
# Access to the 'waiting' listener.
WaitingListener = listener.WaitingListener
##
# Access to the printing listener
PrintingListener = listener.PrintingListener
|