summaryrefslogtreecommitdiff
path: root/lib/csharp/test/ThriftMVCTest/SecondServiceImpl.cs
diff options
context:
space:
mode:
authorJames E. King, III <jking@apache.org>2017-11-17 14:41:46 -0500
committerJames E. King, III <jking@apache.org>2017-11-18 21:10:40 -0500
commit58402ff6a71f00f9d61a9676bdabd3e5bbe9ea3f (patch)
tree79937c784bdb949254b23f0455433fd57522627c /lib/csharp/test/ThriftMVCTest/SecondServiceImpl.cs
parent87ad2bcaaa5a9fe224ad7a9826b676ca9721ddd1 (diff)
downloadthrift-58402ff6a71f00f9d61a9676bdabd3e5bbe9ea3f.tar.gz
THRIFT-2013: add multiplex server and client test support to cpp language
add multiplex client test support to csharp and java languages fix a bug in the server-side header protocol factory fix a bug in the cpp SSL server socket implementation remove unnecessary sleep in cpp server testOneway This closes #1414
Diffstat (limited to 'lib/csharp/test/ThriftMVCTest/SecondServiceImpl.cs')
-rw-r--r--lib/csharp/test/ThriftMVCTest/SecondServiceImpl.cs14
1 files changed, 2 insertions, 12 deletions
diff --git a/lib/csharp/test/ThriftMVCTest/SecondServiceImpl.cs b/lib/csharp/test/ThriftMVCTest/SecondServiceImpl.cs
index dce014877..fad301a35 100644
--- a/lib/csharp/test/ThriftMVCTest/SecondServiceImpl.cs
+++ b/lib/csharp/test/ThriftMVCTest/SecondServiceImpl.cs
@@ -24,24 +24,14 @@ namespace ThriftMVCTest
{
public class SecondServiceImpl : SecondService.IAsync, SecondService.ISync
{
- public Task blahBlahAsync()
- {
- return Task.FromResult(0);
- }
-
public Task<string> secondtestStringAsync(string thing)
{
return Task.FromResult(thing);
}
- public void blahBlah()
- {
-
- }
-
public string secondtestString(string thing)
{
- return thing;
+ return "testString(\"" + thing + "\")";
}
}
-} \ No newline at end of file
+}