Source code for eotransform.protocol.stream

from abc import abstractmethod
from typing import Generic, TypeVar

StreamInT = TypeVar('StreamInT')


[docs]class StreamIn(Generic[StreamInT]): @abstractmethod def send(self, x: StreamInT) -> None: ...