1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
from typing import Any, Callable, Optional, Union, Tuple
class HiredisError(Exception):
...
class ProtocolError(HiredisError):
...
class ReplyError(HiredisError):
...
class Reader:
def __init__(
self,
protocolError: Callable[[str], Exception] = ...,
replyError: Callable[[str], Exception] = ...,
encoding: Optional[str] = ...,
errors: Optional[str] = ...,
notEnoughData: Any = ...,
) -> None: ...
def feed(
self, __buf: Union[str, bytes], __off: int = ..., __len: int = ...
) -> None: ...
def gets(self, __shouldDecode: bool = ...) -> Any: ...
def setmaxbuf(self, __maxbuf: Optional[int]) -> None: ...
def getmaxbuf(self) -> int: ...
def len(self) -> int: ...
def has_data(self) -> bool: ...
def set_encoding(
self, encoding: Optional[str] = ..., errors: Optional[str] = ...
) -> None: ...
def pack_command(cmd: Tuple[str | int | float | bytes | memoryview]): ...
|