Browse Source

small client fixes

pull/228/head
Miguel Grinberg 6 years ago
parent
commit
7e5c146fc7
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 2
      socketio/__init__.py
  2. 5
      socketio/asyncio_client.py
  3. 5
      socketio/client.py

2
socketio/__init__.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

5
socketio/asyncio_client.py

@ -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

5
socketio/client.py

@ -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()

Loading…
Cancel
Save