py-libp2p/libp2p/network/connection/raw_connection_interface.py

8 lines
166 B
Python
Raw Normal View History

from libp2p.io.abc import ReadWriteCloser
2018-11-12 13:02:49 -05:00
2018-11-11 09:56:44 -05:00
class IRawConnection(ReadWriteCloser):
"""A Raw Connection provides a Reader and a Writer."""
2019-08-01 19:12:11 +08:00
2019-10-24 19:28:42 +02:00
is_initiator: bool