mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 21:01:20 +00:00
15 lines
495 B
Python
15 lines
495 B
Python
|
from server_connector import ServerUplinkConnector
|
||
|
|
||
|
|
||
|
class MessageSender:
|
||
|
def __init__(self, custom_anchor=None):
|
||
|
self.server_connector = ServerUplinkConnector()
|
||
|
if isinstance(custom_anchor, str):
|
||
|
custom_anchor = custom_anchor.encode('utf-8')
|
||
|
self.anchor = custom_anchor or b'message'
|
||
|
|
||
|
def send(self, message):
|
||
|
if isinstance(message, str):
|
||
|
message = message.encode('utf-8')
|
||
|
self.server_connector.send(self.anchor, message)
|