17 lines
285 B
Python
17 lines
285 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
|
|
class IRawConnection(ABC):
|
|
"""
|
|
A Raw Connection provides a Reader and a Writer
|
|
"""
|
|
|
|
@abstractmethod
|
|
async def write(self, data: bytes) -> None:
|
|
pass
|
|
|
|
@abstractmethod
|
|
async def read(self) -> bytes:
|
|
pass
|