From 7e79fa0418856edf603e7284117ac1ae9a2c2d2c Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 20 Dec 2017 22:12:32 +0100 Subject: [PATCH] Support for custom message handlers on the listener --- platypush/__init__.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/platypush/__init__.py b/platypush/__init__.py index af0e3d52..d6a5f4e8 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -36,10 +36,13 @@ class Daemon(object): """ number of executions retries before a request fails """ n_tries = 2 - def __init__(self, config_file=None): + def __init__(self, config_file=None, message_handler=None): """ Constructor Params: config_file -- Configuration file override (default: None) + message_handler -- Another function that will receive the messages. + If set, Platypush will just act as a message proxy. Useful to + embed into other projects, for tests, or for delegating events. """ self.config_file = config_file @@ -66,6 +69,12 @@ class Daemon(object): """ on_message closure Params: msg -- platypush.message.Message instance """ + + if self.message_handler: + # Proxy the message + self.message_handler(msg) + return + if isinstance(msg, Request): logging.info('Processing request: {}'.format(msg)) Thread(target=self.run_request(), args=(msg,)).start()