Author: hcorg
Date: Tue Sep 30 16:59:18 2014
New Revision: 1628490

URL: http://svn.apache.org/r1628490
Log:
async changed to oneway in description of method keyword modifiers

Modified:
    thrift/cms-site/trunk/content/docs/types.md

Modified: thrift/cms-site/trunk/content/docs/types.md
URL: 
http://svn.apache.org/viewvc/thrift/cms-site/trunk/content/docs/types.md?rev=1628490&r1=1628489&r2=1628490&view=diff
==============================================================================
--- thrift/cms-site/trunk/content/docs/types.md (original)
+++ thrift/cms-site/trunk/content/docs/types.md Tue Sep 30 16:59:18 2014
@@ -48,4 +48,4 @@ Services are defined using Thrift types.
 
 A service consists of a set of named functions, each with a list of parameters 
and a return type.
 
-Note that void is a valid type for a function return, in addition to all other 
defined Thrift types. Additionally, an async modifier keyword may be added to a 
void function, which will generate code that does not wait for a response. Note 
that a pure void function will return a response to the client which guarantees 
that the operation has completed on the server side. With async method calls 
the client will only be guaranteed that the request succeeded at the transport 
layer. Async method calls of the same client may be executed in parallel/out of 
order by the server.
\ No newline at end of file
+Note that void is a valid type for a function return, in addition to all other 
defined Thrift types. Additionally, an oneway modifier keyword may be added to 
a void function, which will generate code that does not wait for a response. 
Note that a pure void function will return a response to the client which 
guarantees that the operation has completed on the server side. With oneway 
method calls the client will only be guaranteed that the request succeeded at 
the transport layer. Oneway method calls of the same client may be executed in 
parallel/out of order by the server.
\ No newline at end of file


Reply via email to