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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
Module ``autobahn.twisted``
===========================
Autobahn Twisted specific classes. These are used when Twisted is run as the underlying networking framework.
Component
---------
The component API provides a high-level funcional style method of defining and running WAMP components including authentication configuration
.. autoclass:: autobahn.twisted.component.Component
:members:
.. autofunction:: autobahn.twisted.component.run
WebSocket Protocols and Factories
---------------------------------
Classes for WebSocket clients and servers using Twisted.
.. autoclass:: autobahn.twisted.websocket.WebSocketServerProtocol
:members:
.. autoclass:: autobahn.twisted.websocket.WebSocketClientProtocol
:members:
.. autoclass:: autobahn.twisted.websocket.WebSocketServerFactory
:members:
.. autoclass:: autobahn.twisted.websocket.WebSocketClientFactory
:members:
WAMP-over-WebSocket Protocols and Factories
-------------------------------------------
Classes for WAMP-WebSocket clients and servers using Twisted.
.. autoclass:: autobahn.twisted.websocket.WampWebSocketServerProtocol
:members:
.. autoclass:: autobahn.twisted.websocket.WampWebSocketClientProtocol
:members:
.. autoclass:: autobahn.twisted.websocket.WampWebSocketServerFactory
:members:
.. autoclass:: autobahn.twisted.websocket.WampWebSocketClientFactory
:members:
WAMP-over-RawSocket Protocols and Factories
-------------------------------------------
Classes for WAMP-RawSocket clients and servers using Twisted.
.. autoclass:: autobahn.twisted.rawsocket.WampRawSocketServerProtocol
:members:
.. autoclass:: autobahn.twisted.rawsocket.WampRawSocketClientProtocol
:members:
.. autoclass:: autobahn.twisted.rawsocket.WampRawSocketServerFactory
:members:
.. autoclass:: autobahn.twisted.rawsocket.WampRawSocketClientFactory
:members:
WAMP Sessions
-------------
Classes for WAMP sessions using Twisted.
.. autoclass:: autobahn.twisted.wamp.ApplicationSession
:members:
.. autoclass:: autobahn.twisted.wamp.ApplicationRunner
:members:
|