You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by Apache Wiki <wi...@apache.org> on 2009/09/03 20:46:11 UTC

[Thrift Wiki] Trivial Update of "Tutorial" by RobSlifka

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Thrift Wiki" for change notification.

The following page has been changed by RobSlifka:
http://wiki.apache.org/thrift/Tutorial

The comment on the change is:
Added to example, possible to delcare more than one service per file.

------------------------------------------------------------------------------
      * The server may execute async invocations of the same client in parallel/
      * out of order.
      */
-    oneway void zip()
+    oneway void zip(),
+ }
  
+ /**
+  * It's possible to declare more than one service per Thrift file.
+  */
+ service CalculatorExtreme extends shared.SharedService {
+     void pingExtreme(),
  }
  
  /**