You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ A comprehensive Python package to interact with the Mist Cloud APIs, built from
32
32
-[Examples](#examples)
33
33
-[WebSocket Streaming](#websocket-streaming)
34
34
-[Connection Parameters](#connection-parameters)
35
-
-[Callbacks](#callbacks)
35
+
-[Methods](#methods)
36
36
-[Available Channels](#available-channels)
37
37
-[Usage Patterns](#usage-patterns)
38
38
-[Async Usage](#async-usage)
@@ -588,6 +588,7 @@ All channel classes accept the following optional keyword arguments:
588
588
|`auto_reconnect`|`bool`|`False`| Automatically reconnect on transient failures using exponential backoff. |
589
589
|`max_reconnect_attempts`|`int`|`5`| Maximum number of reconnect attempts before giving up. |
590
590
|`reconnect_backoff`|`float`|`2.0`| Base backoff delay in seconds. Doubles after each failed attempt (2s, 4s, 8s, ...). Resets on successful reconnection. |
591
+
|`queue_maxsize`|`int`|`0`| Maximum messages buffered in the internal queue for `receive()`. `0` means unbounded. When set, the receive thread blocks if the queue is full, providing backpressure for high-frequency streams. |
0 commit comments