mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-10 23:20:55 +00:00
Add INetStream to type StreamReader
TODO: Make stream readers implement `Reader`
This commit is contained in:
@ -7,6 +7,7 @@ from .net_stream_interface import INetStream
|
|||||||
class NetStream(INetStream):
|
class NetStream(INetStream):
|
||||||
|
|
||||||
muxed_stream: IMuxedStream
|
muxed_stream: IMuxedStream
|
||||||
|
# TODO: Why we expose `mplex_conn` here?
|
||||||
mplex_conn: IMuxedConn
|
mplex_conn: IMuxedConn
|
||||||
protocol_id: TProtocol
|
protocol_id: TProtocol
|
||||||
|
|
||||||
|
|||||||
@ -9,5 +9,4 @@ if TYPE_CHECKING:
|
|||||||
TProtocol = NewType("TProtocol", str)
|
TProtocol = NewType("TProtocol", str)
|
||||||
StreamHandlerFn = Callable[["INetStream"], Awaitable[None]]
|
StreamHandlerFn = Callable[["INetStream"], Awaitable[None]]
|
||||||
|
|
||||||
|
StreamReader = Union["IMuxedStream", "INetStream", IRawConnection]
|
||||||
StreamReader = Union["IMuxedStream", IRawConnection]
|
|
||||||
|
|||||||
Reference in New Issue
Block a user