mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
## Problem ## Summary of changes --------- Co-authored-by: Alexander Bayandin <alexander@neon.tech>
13 lines
447 B
Python
13 lines
447 B
Python
from .exceptions import FlowControlError as FlowControlError
|
|
from _typeshed import Incomplete
|
|
|
|
LARGEST_FLOW_CONTROL_WINDOW: Incomplete
|
|
|
|
class WindowManager:
|
|
max_window_size: Incomplete
|
|
current_window_size: Incomplete
|
|
def __init__(self, max_window_size: int) -> None: ...
|
|
def window_consumed(self, size: int) -> None: ...
|
|
def window_opened(self, size: int) -> None: ...
|
|
def process_bytes(self, size: int) -> int | None: ...
|