2018-10-15 13:52:25 +08:00
|
|
|
from .network_interface import INetwork
|
2018-10-15 01:47:06 +08:00
|
|
|
|
2018-10-15 13:52:25 +08:00
|
|
|
class Swarm(INetwork):
|
|
|
|
|
|
|
|
def __init__(self, context, my_peer_id, peer_store):
|
|
|
|
self.context = context
|
|
|
|
self.my_peer_id = my_peer_id
|
|
|
|
self.peer_store = peer_store
|
|
|
|
|
|
|
|
def set_stream_handler(self, stream_handler):
|
|
|
|
"""
|
|
|
|
:param stream_handler: a stream handler instance
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def new_stream(self, context, peer_id):
|
|
|
|
"""
|
|
|
|
:param context: context instance
|
|
|
|
:param peer_id: peer_id of destination
|
|
|
|
:return: stream instance
|
|
|
|
"""
|
|
|
|
pass
|