mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00
11 lines
249 B
Cap'n Proto
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);
|
|
}
|