mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-18 21:50:37 +00:00
20 lines
459 B
Python
20 lines
459 B
Python
from .exceptions import (
|
|
FrameDataMissingError as FrameDataMissingError,
|
|
)
|
|
from .exceptions import (
|
|
FrameTooLargeError as FrameTooLargeError,
|
|
)
|
|
from .exceptions import (
|
|
ProtocolError as ProtocolError,
|
|
)
|
|
|
|
CONTINUATION_BACKLOG: int
|
|
|
|
class FrameBuffer:
|
|
data: bytes
|
|
max_frame_size: int
|
|
def __init__(self, server: bool = ...) -> None: ...
|
|
def add_data(self, data) -> None: ...
|
|
def __iter__(self): ...
|
|
def __next__(self): ...
|