py-libp2p/network/stream/net_stream_interface.py

38 lines
812 B
Python
Raw Normal View History

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):
"""
reads from the underlying muxed_stream
2018-11-12 05:04:57 +08:00
:return: bytes of input
"""
@abstractmethod
def write(self, _bytes):
"""
write to the underlying muxed_stream
2018-11-12 05:04:57 +08:00
:return: number of bytes written
"""
@abstractmethod
def close(self):
"""
close the underlying muxed stream
2018-11-12 05:04:57 +08:00
:return: true if successful
"""