pycapnp/examples/thread.capnp
2014-08-26 15:21:46 -07:00

11 lines
249 B
Cap'n Proto

@0xf5745ea9c82baa3a;
interface Example {
interface StatusSubscriber {
status @0 (value: Bool);
# Call the function on the given parameters.
}
longRunning @0 () -> (value: Bool);
subscribeStatus @1 (subscriber: StatusSubscriber);
}