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/08/07 20:28:48 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:
Updated deprecated "async" keyword to "oneway"

------------------------------------------------------------------------------
     i32 calculate(1:i32 logid, 2:Work w) throws (1:InvalidOperation ouch),
  
     /**
-     * This method has an async modifier. That means the client only makes
+     * This method has an oneway modifier. That means the client only makes
-     * a request and does not listen for any response at all. Async methods
+     * a request and does not listen for any response at all. Oneway methods
      * must be void.
      *
      * The server may execute async invocations of the same client in parallel/
      * out of order.
      */
-    async void zip()
+    oneway void zip()
  
  }