blob: 3cce4ebd074b11e9541176d4c4ad56c9da0850cc [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),
Mark Sleed3d733a2006-09-01 22:19:06 +00007// u16 echoU16(u16 arg),
8// u32 echoU32(u32 arg),
9// u64 echoU64(u64 arg),
10// i16 echoI16(i16 arg),
Marc Slemkod97eb612006-08-24 23:37:36 +000011 i32 echoI32(i32 arg),
12 i64 echoI64(i64 arg),
Marc Slemkob09f5882006-08-23 22:03:34 +000013 string echoString(string arg),
14 list<byte> echoList(list<byte> arg),
15 set<byte> echoSet(set<byte> arg),
16 map<byte, byte> echoMap(map<byte, byte> arg),
Marc Slemko3ea00332006-08-17 01:11:13 +000017}
18