2018-11-12 05:04:57 +08:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
2018-11-13 02:02:49 +08:00
|
|
|
class INetStream(ABC):
|
2018-11-12 05:04:57 +08:00
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def get_protocol(self):
|
|
|
|
"""
|
|
|
|
:return: protocol id that stream runs on
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def set_protocol(self, protocol_id):
|
|
|
|
"""
|
|
|
|
:param protocol_id: protocol id that stream runs on
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def read(self):
|
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
reads from the underlying muxed_stream
|
2018-11-12 05:04:57 +08:00
|
|
|
:return: bytes of input
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def write(self, _bytes):
|
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
write to the underlying muxed_stream
|
2018-11-12 05:04:57 +08:00
|
|
|
:return: number of bytes written
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def close(self):
|
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
close the underlying muxed stream
|
2018-11-12 05:04:57 +08:00
|
|
|
:return: true if successful
|
|
|
|
"""
|