py-libp2p/network/network_interface.py
2018-10-21 12:55:45 -04:00

24 lines
555 B
Python

from abc import ABC, abstractmethod
class INetwork(ABC):
def __init__(self, my_peer_id, peer_store):
self.my_peer_id = my_peer_id
self.peer_store = peer_store
@abstractmethod
def set_stream_handler(self, stream_handler):
"""
:param stream_handler: a stream handler instance
:return: true if successful
"""
pass
@abstractmethod
def new_stream(self, peer_id):
"""
:param peer_id: peer_id of destination
:return: stream instance
"""
pass