|
@@ -138,6 +138,12 @@ class ConnHandler(object):
|
|
async def handle(self, data):
|
|
async def handle(self, data):
|
|
return
|
|
return
|
|
|
|
|
|
|
|
+ async def on_welcome(self):
|
|
|
|
+ """
|
|
|
|
+ This method can be used to send a welcome message to the client.
|
|
|
|
+ """
|
|
|
|
+ self.send("Welcome client, this is the server sending!")
|
|
|
|
+
|
|
async def recv(self):
|
|
async def recv(self):
|
|
"""
|
|
"""
|
|
This method waits for the client to send something, decodes it and
|
|
This method waits for the client to send something, decodes it and
|
|
@@ -164,13 +170,6 @@ class ConnHandler(object):
|
|
lserver.error(e, exc_info=True)
|
|
lserver.error(e, exc_info=True)
|
|
return False
|
|
return False
|
|
|
|
|
|
- async def welcome_client(self):
|
|
|
|
- """
|
|
|
|
- This method can be used to send a welcome message to the client.
|
|
|
|
- """
|
|
|
|
- self.send("Welcome client, this is the server sending!")
|
|
|
|
- pass
|
|
|
|
-
|
|
|
|
|
|
|
|
class ConnHandlerEcho(ConnHandler):
|
|
class ConnHandlerEcho(ConnHandler):
|
|
"""
|
|
"""
|