Added stream & idempotent annotations for RPCs.

Change-Id: Ia8651c1051808fdda0dc0ba52ec991777f868e88
Tested: on Linux.
This commit is contained in:
Wouter van Oortmerssen
2016-03-09 15:03:05 -08:00
parent 1a63eb46bb
commit e6b79f0002
3 changed files with 13 additions and 9 deletions

View File

@@ -62,8 +62,8 @@ table Monster {
}
rpc_service MonsterStorage {
Store(Monster):Stat;
Retrieve(Stat):Monster;
Store(Monster):Stat (stream);
Retrieve(Stat):Monster (idempotent);
}
root_type Monster;