Commit 990e00af authored by Taddeüs Kroes's avatar Taddeüs Kroes

Code cleanup

parent 1eeccf8b
...@@ -158,7 +158,7 @@ class Connection(object): ...@@ -158,7 +158,7 @@ class Connection(object):
""" """
Called after the connection is initialized. Called after the connection is initialized.
""" """
pass return NotImplemented
def onmessage(self, message): def onmessage(self, message):
""" """
...@@ -173,22 +173,22 @@ class Connection(object): ...@@ -173,22 +173,22 @@ class Connection(object):
used to start a timeout handler for a PONG frame that is not received used to start a timeout handler for a PONG frame that is not received
in time. in time.
""" """
pass return NotImplemented
def onpong(self, payload): def onpong(self, payload):
""" """
Called when a PONG control frame is received. Called when a PONG control frame is received.
""" """
pass return NotImplemented
def onclose(self, code, reason): def onclose(self, code, reason):
""" """
Called when the socket is closed by either end point. Called when the socket is closed by either end point.
""" """
pass return NotImplemented
def onexception(self, e): def onexception(self, e):
""" """
Handle a raised exception. Handle a raised exception.
""" """
pass return NotImplemented
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment