py-libp2p/network/network_interface.py

29 lines
685 B
Python
Raw Normal View History

2018-10-15 01:52:25 -04:00
from abc import ABC, abstractmethod
2018-10-14 13:47:06 -04:00
2018-10-15 01:52:25 -04:00
class INetwork(ABC):
2018-10-14 13:47:06 -04:00
2018-10-15 01:52:25 -04:00
@abstractmethod
def set_stream_handler(self, stream_handler):
"""
:param stream_handler: a stream handler instance
:return: true if successful
"""
pass
2018-10-14 13:47:06 -04:00
2018-10-15 01:52:25 -04:00
@abstractmethod
2018-10-31 22:40:01 +01:00
def new_stream(self, peer_id, protocol_id):
2018-10-15 01:52:25 -04:00
"""
:param peer_id: peer_id of destination
2018-10-31 22:40:01 +01:00
:param protocol_id: protocol id
2018-10-15 01:52:25 -04:00
:return: stream instance
"""
pass
2018-10-21 13:44:39 -04:00
@abstractmethod
def listen(self, *args):
"""
:param *args: one or many multiaddrs to start listening on
2018-10-26 22:16:24 +02:00
:return: True if at least one success
2018-10-21 13:44:39 -04:00
"""
2018-10-31 23:31:52 +01:00
pass