forked from platypush/platypush
Removed pydoc of internal plugin methods that were propagated to the docs of all the derived plugins
This commit is contained in:
parent
d5cddc23fa
commit
40903393df
1 changed files with 0 additions and 22 deletions
|
@ -47,33 +47,11 @@ class EventGenerator(object):
|
||||||
threading.Thread(target=hndl_thread, args=(hndl,)).start()
|
threading.Thread(target=hndl_thread, args=(hndl,)).start()
|
||||||
|
|
||||||
def register_handler(self, event_type, callback):
|
def register_handler(self, event_type, callback):
|
||||||
"""
|
|
||||||
Registers a callback handler for a camera event type.
|
|
||||||
|
|
||||||
:param event_type: Event type to listen to. Must be a subclass of
|
|
||||||
:class:`platypush.message.event.Event`
|
|
||||||
:type event_type: :class:`platypush.message.event.Event` or a subclass
|
|
||||||
|
|
||||||
:param callback: Callback function. It will take an event of type
|
|
||||||
:class:`platypush.message.event.Event` as a parameter
|
|
||||||
:type callback: function
|
|
||||||
"""
|
|
||||||
|
|
||||||
if event_type not in self._event_handlers:
|
if event_type not in self._event_handlers:
|
||||||
self._event_handlers[event_type] = set()
|
self._event_handlers[event_type] = set()
|
||||||
self._event_handlers[event_type].add(callback)
|
self._event_handlers[event_type].add(callback)
|
||||||
|
|
||||||
def unregister_handler(self, event_type, callback):
|
def unregister_handler(self, event_type, callback):
|
||||||
"""
|
|
||||||
Unregisters a callback handler from a camera event type.
|
|
||||||
|
|
||||||
:param event_type: Event type the callback is registered to
|
|
||||||
:type event_type: :class:`platypush.message.event.Event` or a subclass
|
|
||||||
|
|
||||||
:param callback: Callback function to unregister
|
|
||||||
:type callback: function
|
|
||||||
"""
|
|
||||||
|
|
||||||
if event_type not in self._event_handlers:
|
if event_type not in self._event_handlers:
|
||||||
return
|
return
|
||||||
if callback not in self._event_handlers[event_type]:
|
if callback not in self._event_handlers[event_type]:
|
||||||
|
|
Loading…
Reference in a new issue