muxer scaffolding

This commit is contained in:
zixuanzh
2018-10-31 22:31:00 +01:00
parent 5f9c3026aa
commit 19650d0f72
8 changed files with 258 additions and 0 deletions

View File

@ -0,0 +1,32 @@
from abc import ABC, abstractmethod
class IMuxedConn(ABC):
"""
reference: https://github.com/libp2p/go-stream-muxer/blob/master/muxer.go
"""
# TODO closer
@abstractmethod
def is_closed(self):
"""
check connection is fully closed
:return: true if successful
"""
pass
@abstractmethod
def open_stream(self):
"""
creates a new muxed_stream
:return: a new stream
"""
pass
@abstractmethod
def accept_stream(self):
"""
accepts a muxed stream opened by the other end
:return: the accepted stream
"""
pass