summaryrefslogtreecommitdiff
path: root/test/StressTest.thrift
diff options
context:
space:
mode:
authorMark Slee <mcslee@apache.org>2006-10-25 19:52:10 +0000
committerMark Slee <mcslee@apache.org>2006-10-25 19:52:10 +0000
commitd7173476bb79c899e73cc8c91ee1752f29830058 (patch)
tree1cbdb416f7293560ec8a4eb345dfc2e89a02bb7e /test/StressTest.thrift
parentf0712dc994e0f78423e8b99ba69fc2e2ed827bf1 (diff)
downloadthrift-d7173476bb79c899e73cc8c91ee1752f29830058.tar.gz
Stresstest onto new Thrift C++ model
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664841 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/StressTest.thrift')
-rw-r--r--test/StressTest.thrift16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/StressTest.thrift b/test/StressTest.thrift
index 000eb296e..1b2b7c8e8 100644
--- a/test/StressTest.thrift
+++ b/test/StressTest.thrift
@@ -1,14 +1,14 @@
-namespace test.stress
+cpp_namespace test.stress
service Service {
void echoVoid(),
- byte echoByte(byte arg),
- i32 echoI32(i32 arg),
- i64 echoI64(i64 arg),
- string echoString(string arg),
- list<byte> echoList(list<byte> arg),
- set<byte> echoSet(set<byte> arg),
- map<byte, byte> echoMap(map<byte, byte> arg),
+ 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),
}