Skip to content

Commit 96c531f

Browse files
committed
documentation update
1 parent 947e0c2 commit 96c531f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

rsocket/transports/asyncwebsockets_transport.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ async def websocket_client(url: str,
1414
**kwargs) -> RSocketClient:
1515
"""
1616
Helper method to instantiate an RSocket client using a websocket url over asyncwebsockets client.
17+
18+
:param url: websocket url
19+
:param kwargs: parameters passed to the client
1720
"""
1821
from asyncwebsockets import open_websocket
1922
async with open_websocket(url) as websocket:
@@ -25,6 +28,8 @@ async def websocket_client(url: str,
2528
class TransportAsyncWebsocketsClient(AbstractMessagingTransport):
2629
"""
2730
RSocket transport over client side asyncwebsockets.
31+
32+
:param websocket: websocket connection
2833
"""
2934

3035
def __init__(self, websocket):

0 commit comments

Comments
 (0)