|
|
@ -38,7 +38,7 @@ class AsyncPubSubManager(AsyncManager): |
|
|
|
self._get_logger().info(self.name + ' backend initialized.') |
|
|
|
|
|
|
|
async def emit(self, event, data, namespace=None, room=None, skip_sid=None, |
|
|
|
callback=None, **kwargs): |
|
|
|
callback=None, to=None, **kwargs): |
|
|
|
"""Emit a message to a single client, a room, or all the clients |
|
|
|
connected to the namespace. |
|
|
|
|
|
|
@ -49,6 +49,7 @@ class AsyncPubSubManager(AsyncManager): |
|
|
|
|
|
|
|
Note: this method is a coroutine. |
|
|
|
""" |
|
|
|
room = to or room |
|
|
|
if kwargs.get('ignore_queue'): |
|
|
|
return await super().emit( |
|
|
|
event, data, namespace=namespace, room=room, skip_sid=skip_sid, |
|
|
|