2014-10-08 05:18:07 +00:00
|
|
|
# Thrift Erlang Software Library #
|
2009-04-08 00:19:37 +00:00
|
|
|
|
2014-10-08 05:18:07 +00:00
|
|
|
## License ##
|
2009-04-08 00:19:37 +00:00
|
|
|
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
|
2014-10-08 05:18:07 +00:00
|
|
|
## Release Notes ##
|
|
|
|
|
|
|
|
### 0.9.2 ###
|
|
|
|
|
|
|
|
as of 0.9.2 struct and function naming conventions have changed. to retain the
|
|
|
|
old naming conventions (for backwards compatibility) use the compiler option
|
|
|
|
`legacynames`
|
|
|
|
|
|
|
|
## Example ##
|
2009-04-08 00:19:37 +00:00
|
|
|
|
2008-06-11 00:58:13 +00:00
|
|
|
Example session using thrift_client:
|
|
|
|
|
2015-02-15 20:17:30 +00:00
|
|
|
1> {ok, C0} = thrift_client_util:new("localhost", 9090, thrift_test_thrift, []), ok.
|
2010-08-30 22:05:29 +00:00
|
|
|
ok
|
|
|
|
2> {C1, R1} = thrift_client:call(C0, testVoid, []), R1.
|
2008-06-11 00:58:13 +00:00
|
|
|
{ok,ok}
|
2010-08-30 22:05:29 +00:00
|
|
|
3> {C2, R2} = thrift_client:call(C1, testVoid, [asdf]), R2.
|
2008-06-11 00:58:13 +00:00
|
|
|
{error,{bad_args,testVoid,[asdf]}}
|
2010-08-30 22:05:29 +00:00
|
|
|
4> {C3, R3} = thrift_client:call(C2, testI32, [123]), R3.
|
2008-06-11 00:58:13 +00:00
|
|
|
{ok,123}
|
2010-08-30 22:05:29 +00:00
|
|
|
5> {C4, R4} = thrift_client:call(C3, testOneway, [1]), R4.
|
2008-06-11 00:58:13 +00:00
|
|
|
{ok,ok}
|
2010-08-30 22:05:29 +00:00
|
|
|
6> {C5, R5} = thrift_client:call(C4, testXception, ["foo"]), R5.
|
2008-06-11 00:58:13 +00:00
|
|
|
{error,{no_function,testXception}}
|
2010-08-30 22:05:29 +00:00
|
|
|
7> {C6, R6} = thrift_client:call(C5, testException, ["foo"]), R6.
|
2008-06-11 00:58:13 +00:00
|
|
|
{ok,ok}
|
2010-08-30 22:05:29 +00:00
|
|
|
8> {C7, R7} = (catch thrift_client:call(C6, testException, ["Xception"])), R7.
|
|
|
|
{exception,{xception,1001,<<"Xception">>}}
|