mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 05:52:55 +00:00
## Problem ## Summary of changes --------- Co-authored-by: Alexander Bayandin <alexander@neon.tech>
13 lines
454 B
Python
13 lines
454 B
Python
from .exceptions import FrameDataMissingError as FrameDataMissingError, FrameTooLargeError as FrameTooLargeError, ProtocolError as ProtocolError
|
|
from hyperframe.frame import Frame
|
|
|
|
CONTINUATION_BACKLOG: int
|
|
|
|
class FrameBuffer:
|
|
data: bytes
|
|
max_frame_size: int
|
|
def __init__(self, server: bool = False) -> None: ...
|
|
def add_data(self, data: bytes) -> None: ...
|
|
def __iter__(self) -> FrameBuffer: ...
|
|
def __next__(self) -> Frame: ...
|