BinaryReader
faststream.redis.parser.binary.BinaryReader #
BinaryReader(data: bytes)
Source code in faststream/redis/parser/binary.py
145 146 147 | |
read_until #
read_until(offset: int) -> bytes
Source code in faststream/redis/parser/binary.py
149 150 151 152 | |
shift_offset_to #
shift_offset_to(offset: int) -> None
Source code in faststream/redis/parser/binary.py
154 155 | |
read_short #
read_short() -> int
Source code in faststream/redis/parser/binary.py
157 158 159 160 | |
read_int #
read_int() -> int
Source code in faststream/redis/parser/binary.py
162 163 164 165 | |
read_string #
read_string() -> str
Source code in faststream/redis/parser/binary.py
167 168 169 170 171 | |
read_bytes #
read_bytes() -> bytes
Source code in faststream/redis/parser/binary.py
173 174 | |