Public Member Functions | |
def | __init__ |
def | subscribe |
def | unsubscribe |
Private Attributes | |
_subscribers |
Keeps track of client subscriptions
Definition at line 183 of file subscribers.py.
Definition at line 188 of file subscribers.py.
def rosbridge_library.internal.subscribers.SubscriberManager.subscribe | ( | self, | |
client_id, | |||
topic, | |||
callback, | |||
msg_type = None |
|||
) |
Subscribe to a topic Keyword arguments: client_id -- the ID of the client making this subscribe request topic -- the name of the topic to subscribe to callback -- the callback to call for incoming messages on the topic msg_type -- (optional) the type of the topic
Definition at line 191 of file subscribers.py.
def rosbridge_library.internal.subscribers.SubscriberManager.unsubscribe | ( | self, | |
client_id, | |||
topic | |||
) |
Unsubscribe from a topic Keyword arguments: client_id -- the ID of the client to unsubscribe topic -- the topic to unsubscribe from
Definition at line 209 of file subscribers.py.
Definition at line 188 of file subscribers.py.