blob: 000eb296e160d1356a366f029fdeda77e13c89cc [file] [log] [blame]
Marc Slemko3ea00332006-08-17 01:11:13 +00001namespace test.stress
2
3service Service {
4
5 void echoVoid(),
6 byte echoByte(byte arg),
Marc Slemkod97eb612006-08-24 23:37:36 +00007 i32 echoI32(i32 arg),
8 i64 echoI64(i64 arg),
Marc Slemkob09f5882006-08-23 22:03:34 +00009 string echoString(string arg),
10 list<byte> echoList(list<byte> arg),
11 set<byte> echoSet(set<byte> arg),
12 map<byte, byte> echoMap(map<byte, byte> arg),
Marc Slemko3ea00332006-08-17 01:11:13 +000013}
14