autobahn.twisted.websocket.WrappingWebSocketServerFactory

Here are the examples of the python api autobahn.twisted.websocket.WrappingWebSocketServerFactory taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : autobahn_endpoints.py
with MIT License
from fbla-competitive-events

    def listen(self, protocolFactory):
        return self._endpoint.listen(WrappingWebSocketServerFactory(protocolFactory, reactor=self._reactor, **self._options))


# note that for older Twisted before the WithReactor variant, we
# import it under that name so we can share (most of) this
# implementation...
@implementer(IPlugin)