mirror of https://github.com/libp2p/py-libp2p.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
973 B
47 lines
973 B
from abc import ABC, abstractmethod
|
|
|
|
class IStream(ABC):
|
|
|
|
def __init__(self, peer_id, multi_addr, connection):
|
|
self.peer_id = peer_id
|
|
self.multi_addr = multi_addr
|
|
self.connection = connection
|
|
|
|
@abstractmethod
|
|
def get_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
|
|
|