Use meaningful names in EventHandler

This commit is contained in:
Bálint Bokros 2017-12-03 18:59:35 +01:00
parent 6a5b83f406
commit f995aae318

View File

@ -9,11 +9,11 @@ class EventHandler(EventHandlerBase):
super().__init__(anchor, zmq_context)
self.event_handler_function = event_handler_function
def wrapper(msg_parts, handler):
def event_handler_callback(msg_parts, handler_func):
anchor, message = msg_parts
data_json = json.loads(message)
response = handler(data_json, self)
response = handler_func(data_json, self)
encoded_response = json.dumps(response).encode('utf-8')
self.zmq_push_socket.send_multipart([anchor, encoded_response])
self.zmq_sub_stream.on_recv(partial(wrapper, handler=event_handler_function))
self.zmq_sub_stream.on_recv(partial(event_handler_callback, handler_func=event_handler_function))