fabaccess-bffh/runtime/console-api/schema/stream.capnp
2023-05-05 13:41:31 +02:00

13 lines
171 B
Cap'n Proto

@0x85894bd060182ed3;
interface Receiver(T) {
send @0 (chunk :T) -> stream;
done @1 ();
}
interface Sender {
pause @0 ();
resume @1 ();
stop @2 ();
}