8bcffb67cb
* ignore TODO and kademlia * remove unnecessary pass * fixed swarm warnings * fixed peerdata_interface warnings * fixed peer warnings * fixed rest of linting errors * trying to fix last error * fixed dup errors
38 lines
812 B
Python
38 lines
812 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class INetStream(ABC):
|
|
|
|
@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
|
|
:return: bytes of input
|
|
"""
|
|
|
|
@abstractmethod
|
|
def write(self, _bytes):
|
|
"""
|
|
write to the underlying muxed_stream
|
|
:return: number of bytes written
|
|
"""
|
|
|
|
@abstractmethod
|
|
def close(self):
|
|
"""
|
|
close the underlying muxed stream
|
|
:return: true if successful
|
|
"""
|