Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
3 changed files with
7 additions and
5 deletions
-
socketio/__init__.py
-
socketio/asyncio_client.py
-
socketio/client.py
|
|
@ -11,7 +11,6 @@ from .namespace import Namespace, ClientNamespace |
|
|
|
from .middleware import WSGIApp, Middleware |
|
|
|
from .tornado import get_tornado_handler |
|
|
|
if sys.version_info >= (3, 5): # pragma: no cover |
|
|
|
# from .asyncio_client import AsyncClient |
|
|
|
from .asyncio_client import AsyncClient |
|
|
|
from .asyncio_server import AsyncServer |
|
|
|
from .asyncio_manager import AsyncManager |
|
|
@ -19,6 +18,7 @@ if sys.version_info >= (3, 5): # pragma: no cover |
|
|
|
from .asyncio_redis_manager import AsyncRedisManager |
|
|
|
from .asgi import ASGIApp |
|
|
|
else: # pragma: no cover |
|
|
|
AsyncClient = None |
|
|
|
AsyncServer = None |
|
|
|
AsyncManager = None |
|
|
|
AsyncNamespace = None |
|
|
|
|
|
@ -13,9 +13,9 @@ default_logger = logging.getLogger('socketio.client') |
|
|
|
|
|
|
|
|
|
|
|
class AsyncClient(client.Client): |
|
|
|
"""An Socket.IO client for asyncio. |
|
|
|
"""A Socket.IO client for asyncio. |
|
|
|
|
|
|
|
This class implements a fully compliant Engine.IO web client with support |
|
|
|
This class implements a fully compliant Socket.IO web client with support |
|
|
|
for websocket and long-polling transports. |
|
|
|
|
|
|
|
:param reconnection: ``True`` if the client should automatically attempt to |
|
|
@ -110,6 +110,7 @@ class AsyncClient(client.Client): |
|
|
|
""" |
|
|
|
while True: |
|
|
|
await self.eio.wait() |
|
|
|
await self.sleep(1) # give the reconnect task time to start up |
|
|
|
if not self._reconnect_task: |
|
|
|
break |
|
|
|
await self._reconnect_task |
|
|
|
|
|
@ -13,9 +13,9 @@ default_logger = logging.getLogger('socketio.client') |
|
|
|
|
|
|
|
|
|
|
|
class Client(object): |
|
|
|
"""An Socket.IO client. |
|
|
|
"""A Socket.IO client. |
|
|
|
|
|
|
|
This class implements a fully compliant Engine.IO web client with support |
|
|
|
This class implements a fully compliant Socket.IO web client with support |
|
|
|
for websocket and long-polling transports. |
|
|
|
|
|
|
|
:param reconnection: ``True`` if the client should automatically attempt to |
|
|
@ -214,6 +214,7 @@ class Client(object): |
|
|
|
""" |
|
|
|
while True: |
|
|
|
self.eio.wait() |
|
|
|
self.sleep(1) # give the reconnect task time to start up |
|
|
|
if not self._reconnect_task: |
|
|
|
break |
|
|
|
self._reconnect_task.join() |
|
|
|