2018-11-11 16:04:57 -05:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
2019-01-09 21:38:56 +03:00
|
|
|
|
2018-11-12 13:02:49 -05:00
|
|
|
class INetStream(ABC):
|
2018-11-11 16:04:57 -05: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-26 18:24:29 -05:00
|
|
|
reads from the underlying muxed_stream
|
2018-11-11 16:04:57 -05:00
|
|
|
:return: bytes of input
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def write(self, _bytes):
|
|
|
|
"""
|
2018-11-26 18:24:29 -05:00
|
|
|
write to the underlying muxed_stream
|
2018-11-11 16:04:57 -05:00
|
|
|
:return: number of bytes written
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def close(self):
|
|
|
|
"""
|
2018-11-26 18:24:29 -05:00
|
|
|
close the underlying muxed stream
|
2018-11-11 16:04:57 -05:00
|
|
|
:return: true if successful
|
|
|
|
"""
|