py-libp2p/muxer/mplex/muxed_connection_interface.py

42 lines
925 B
Python
Raw Normal View History

2018-11-01 05:31:00 +08:00
from abc import ABC, abstractmethod
2018-11-12 07:03:04 +08:00
2018-11-01 05:31:00 +08:00
class IMuxedConn(ABC):
"""
reference: https://github.com/libp2p/go-stream-muxer/blob/master/muxer.go
"""
2018-11-12 07:03:04 +08:00
@abstractmethod
def close(self):
"""
close connection
:return: true if successful
"""
pass
2018-11-01 05:31:00 +08:00
@abstractmethod
def is_closed(self):
"""
check connection is fully closed
:return: true if successful
"""
pass
@abstractmethod
2018-11-01 06:02:00 +08:00
def open_stream(self, protocol_id, stream_name):
2018-11-01 05:31:00 +08:00
"""
creates a new muxed_stream
2018-11-01 06:02:00 +08:00
:param protocol_id: id to be associated with stream
:param stream_name: name as part of identifier
2018-11-01 05:31:00 +08:00
:return: a new stream
"""
pass
@abstractmethod
def accept_stream(self):
"""
accepts a muxed stream opened by the other end
:return: the accepted stream
"""
2018-11-01 06:02:00 +08:00
pass