Connection constructor. `session` Associated session
(self, session)
| 9 | |
| 10 | class SockJSConnection(object): |
| 11 | def __init__(self, session): |
| 12 | """Connection constructor. |
| 13 | |
| 14 | `session` |
| 15 | Associated session |
| 16 | """ |
| 17 | self.session = session |
| 18 | |
| 19 | # Public API |
| 20 | def on_open(self, request): |
nothing calls this directly
no outgoing calls
no test coverage detected