mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
d7173476bb
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664841 13f79535-47bb-0310-9956-ffa450edef68
15 lines
323 B
Thrift
15 lines
323 B
Thrift
cpp_namespace test.stress
|
|
|
|
service Service {
|
|
|
|
void echoVoid(),
|
|
byte echoByte(1: byte arg),
|
|
i32 echoI32(1: i32 arg),
|
|
i64 echoI64(1: i64 arg),
|
|
string echoString(1: string arg),
|
|
list<byte> echoList(1: list<byte> arg),
|
|
set<byte> echoSet(1: set<byte> arg),
|
|
map<byte, byte> echoMap(1: map<byte, byte> arg),
|
|
}
|
|
|