├── .gitignore ├── CHANGES.txt ├── LICENSE ├── NOTICE.txt ├── README.markdown ├── doc ├── Makefile └── source │ ├── _static │ └── .empty │ ├── async.rst │ ├── conf.py │ ├── config.rst │ ├── developing.rst │ ├── error.rst │ ├── index.rst │ ├── protocol.rst │ ├── readme.txt │ └── sync.rst └── src ├── async ├── Makefile ├── README.txt ├── setup.py └── stompest │ ├── __init__.py │ └── async │ ├── __init__.py │ ├── client.py │ ├── examples │ ├── __init__.py │ ├── consumer.py │ ├── producer.py │ └── transformer.py │ ├── listener.py │ ├── protocol.py │ ├── tests │ ├── __init__.py │ ├── async_client_integration_test.py │ ├── async_client_test.py │ ├── async_util_test.py │ └── broker_simulator.py │ └── util.py └── core ├── Makefile ├── README.txt ├── setup.py └── stompest ├── __init__.py ├── _backwards └── __init__.py ├── config └── __init__.py ├── error └── __init__.py ├── protocol ├── __init__.py ├── commands.py ├── failover.py ├── frame.py ├── parser.py ├── session.py ├── spec.py └── util.py ├── sync ├── __init__.py ├── client.py ├── examples │ ├── __init__.py │ ├── consumer.py │ ├── producer.py │ └── ssl_consumer.py └── transport.py ├── tests ├── __init__.py ├── commands_test.py ├── failover_test.py ├── frame_test.py ├── parser_profile.py ├── parser_test.py ├── session_test.py ├── sync_client_integration_test.py ├── sync_client_test.py ├── transport_test.py └── util_test.py └── util └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/README.markdown -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/_static/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/source/async.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/source/config.rst -------------------------------------------------------------------------------- /doc/source/developing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/source/developing.rst -------------------------------------------------------------------------------- /doc/source/error.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/source/error.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/protocol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/source/protocol.rst -------------------------------------------------------------------------------- /doc/source/readme.txt: -------------------------------------------------------------------------------- 1 | .. include:: ../../src/core/README.txt -------------------------------------------------------------------------------- /doc/source/sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/doc/source/sync.rst -------------------------------------------------------------------------------- /src/async/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/Makefile -------------------------------------------------------------------------------- /src/async/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/README.txt -------------------------------------------------------------------------------- /src/async/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/setup.py -------------------------------------------------------------------------------- /src/async/stompest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/__init__.py -------------------------------------------------------------------------------- /src/async/stompest/async/__init__.py: -------------------------------------------------------------------------------- 1 | from stompest.async.client import Stomp 2 | -------------------------------------------------------------------------------- /src/async/stompest/async/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/client.py -------------------------------------------------------------------------------- /src/async/stompest/async/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/async/stompest/async/examples/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/examples/consumer.py -------------------------------------------------------------------------------- /src/async/stompest/async/examples/producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/examples/producer.py -------------------------------------------------------------------------------- /src/async/stompest/async/examples/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/examples/transformer.py -------------------------------------------------------------------------------- /src/async/stompest/async/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/listener.py -------------------------------------------------------------------------------- /src/async/stompest/async/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/protocol.py -------------------------------------------------------------------------------- /src/async/stompest/async/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/async/stompest/async/tests/async_client_integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/tests/async_client_integration_test.py -------------------------------------------------------------------------------- /src/async/stompest/async/tests/async_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/tests/async_client_test.py -------------------------------------------------------------------------------- /src/async/stompest/async/tests/async_util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/tests/async_util_test.py -------------------------------------------------------------------------------- /src/async/stompest/async/tests/broker_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/tests/broker_simulator.py -------------------------------------------------------------------------------- /src/async/stompest/async/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/async/stompest/async/util.py -------------------------------------------------------------------------------- /src/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/Makefile -------------------------------------------------------------------------------- /src/core/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/README.txt -------------------------------------------------------------------------------- /src/core/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/setup.py -------------------------------------------------------------------------------- /src/core/stompest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/__init__.py -------------------------------------------------------------------------------- /src/core/stompest/_backwards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/_backwards/__init__.py -------------------------------------------------------------------------------- /src/core/stompest/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/config/__init__.py -------------------------------------------------------------------------------- /src/core/stompest/error/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/error/__init__.py -------------------------------------------------------------------------------- /src/core/stompest/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/protocol/__init__.py -------------------------------------------------------------------------------- /src/core/stompest/protocol/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/protocol/commands.py -------------------------------------------------------------------------------- /src/core/stompest/protocol/failover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/protocol/failover.py -------------------------------------------------------------------------------- /src/core/stompest/protocol/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/protocol/frame.py -------------------------------------------------------------------------------- /src/core/stompest/protocol/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/protocol/parser.py -------------------------------------------------------------------------------- /src/core/stompest/protocol/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/protocol/session.py -------------------------------------------------------------------------------- /src/core/stompest/protocol/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/protocol/spec.py -------------------------------------------------------------------------------- /src/core/stompest/protocol/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/protocol/util.py -------------------------------------------------------------------------------- /src/core/stompest/sync/__init__.py: -------------------------------------------------------------------------------- 1 | from stompest.sync.client import Stomp -------------------------------------------------------------------------------- /src/core/stompest/sync/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/sync/client.py -------------------------------------------------------------------------------- /src/core/stompest/sync/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/sync/examples/__init__.py -------------------------------------------------------------------------------- /src/core/stompest/sync/examples/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/sync/examples/consumer.py -------------------------------------------------------------------------------- /src/core/stompest/sync/examples/producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/sync/examples/producer.py -------------------------------------------------------------------------------- /src/core/stompest/sync/examples/ssl_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/sync/examples/ssl_consumer.py -------------------------------------------------------------------------------- /src/core/stompest/sync/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/sync/transport.py -------------------------------------------------------------------------------- /src/core/stompest/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/__init__.py -------------------------------------------------------------------------------- /src/core/stompest/tests/commands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/commands_test.py -------------------------------------------------------------------------------- /src/core/stompest/tests/failover_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/failover_test.py -------------------------------------------------------------------------------- /src/core/stompest/tests/frame_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/frame_test.py -------------------------------------------------------------------------------- /src/core/stompest/tests/parser_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/parser_profile.py -------------------------------------------------------------------------------- /src/core/stompest/tests/parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/parser_test.py -------------------------------------------------------------------------------- /src/core/stompest/tests/session_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/session_test.py -------------------------------------------------------------------------------- /src/core/stompest/tests/sync_client_integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/sync_client_integration_test.py -------------------------------------------------------------------------------- /src/core/stompest/tests/sync_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/sync_client_test.py -------------------------------------------------------------------------------- /src/core/stompest/tests/transport_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/transport_test.py -------------------------------------------------------------------------------- /src/core/stompest/tests/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/tests/util_test.py -------------------------------------------------------------------------------- /src/core/stompest/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikipore/stompest/HEAD/src/core/stompest/util/__init__.py --------------------------------------------------------------------------------