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