Ejemplo n.º 1
0
    def __init__(self, codec_cache: CodecCache, reader: BinaryIO):
        super().__init__()

        self.__codec_cache = codec_cache
        self.__reader = ByteIo(reader)
Ejemplo n.º 2
0
 def reader(self) -> ByteIo:
     file: str = "/d/tmp/seria.test"
     return ByteIo(open(file, "rb"))
Ejemplo n.º 3
0
 def writer(self) -> ByteIo:
     file: str = "/d/tmp/seria.test"
     return ByteIo(open(file, "wb"))
Ejemplo n.º 4
0
    def __init__(self, codec_cache: CodecCache, writer: BinaryIO):
        super().__init__()

        self.__codec_cache = codec_cache
        self.__writer = ByteIo(writer)