py-libp2p/network/stream_interface.py

46 lines
871 B
Python
Raw Normal View History

2018-10-15 13:52:25 +08:00
from abc import ABC, abstractmethod
class IStream(ABC):
2018-10-22 00:55:45 +08:00
def __init__(self, peer_id):
2018-10-15 13:52:25 +08:00
self.peer_id = peer_id
@abstractmethod
def protocol(self):
"""
:return: protocol id that stream runs on
"""
pass
@abstractmethod
def set_protocol(self, protocol_id):
"""
:param protocol_id: protocol id that stream runs on
:return: true if successful
"""
pass
@abstractmethod
def read(self):
"""
read from stream
:return: bytes of input
"""
pass
@abstractmethod
def write(self, _bytes):
"""
write to stream
:return: number of bytes written
"""
pass
@abstractmethod
def close(self):
"""
close stream
:return: true if successful
"""
pass