broker integration: add remote events

This commit is contained in:
Jon Siwek 2015-01-15 15:45:08 -06:00
parent 1e462481dc
commit 7e563b7275
7 changed files with 800 additions and 2 deletions

View file

@ -10,4 +10,13 @@ export {
peers: bool &default = T;
unsolicited: bool &default = F;
};
type Data: record {
d: opaque of Comm::Data &optional;
};
type EventArgs: record {
name: string &optional; # nil for invalid event/args.
args: vector of Comm::Data;
};
}