| commit | e0fdddea44ac97988c7aaf775961a02619eacd22 | [log] [tgz] |
|---|---|---|
| author | Kevin Clark <kclark@apache.org> | 周三 6月 18 01:16:02 2008 +0000 |
| committer | Kevin Clark <kclark@apache.org> | 周三 6月 18 01:16:02 2008 +0000 |
| tree | 35367e5de9881e0f02dcead4b429c64c2df5f6c4 | |
| parent | 90a2cbe0a410edab005f64096583504e9137a21e [diff] [blame] |
Implement NonblockingServer and add specs git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668999 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/rb/spec/ThriftSpec.thrift b/lib/rb/spec/ThriftSpec.thrift index 101caff..1012e51 100644 --- a/lib/rb/spec/ThriftSpec.thrift +++ b/lib/rb/spec/ThriftSpec.thrift
@@ -16,3 +16,11 @@ struct BoolStruct { 1: bool yesno = 1 } + +service NonblockingService { + Hello greeting(1:bool english) + bool block() + async void unblock() + async void shutdown() + void sleep(1:double seconds) +}