THRIFT-136. s/async/oneway/ in the Thrift IDL
This is the real change. The lexer now recognizes "oneway"
and warns on "async". All example and test IDLs have been
updated, as have the syntax files.
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@757994 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/tutorial/tutorial.thrift b/tutorial/tutorial.thrift
index 52e1b75..b87988a 100644
--- a/tutorial/tutorial.thrift
+++ b/tutorial/tutorial.thrift
@@ -121,7 +121,7 @@
* a request and does not listen for any response at all. Oneway methods
* must be void.
*/
- async void zip()
+ oneway void zip()
}