thrift/lib/erl
James E. King III b92ca5f226
THRIFT-4582: Fix Xenial CI build issues (#1563)
* THRIFT-4582: fix xenial build issues

* THRIFT-2913: fix Thrift::ThreadPoolServer should serve inside a thread on xenial

* THRIFT-4478: Move Xenial up to dmd 2.075.1 as that is the new minimum
version that works since the changes for 2.080.0 went in.
2018-06-09 23:02:12 -04:00
..
include THRIFT-4266 Erlang library throws during skipping fields of composite type (maps, lists, structs, sets) 2017-08-05 14:04:21 +02:00
src THRIFT-4340: Fix a crash on client close 2017-09-22 05:30:22 -07:00
test THRIFT-4476: Typecasting problem on double list items, 2018-03-20 16:28:15 -04:00
coding_standards.md THRIFT-2733 Erlang coding standards 2017-09-07 10:20:17 -07:00
Makefile.am THRIFT-4476: Typecasting problem on double list items, 2018-03-20 16:28:15 -04:00
README.md THRIFT-3310 lib/erl/README.md has incorrect formatting 2015-09-03 20:53:44 +02:00
rebar.config THRIFT-3264 Fix Erlang 16 namespaced types 2015-07-28 23:12:52 +02:00
rebar.config.script THRIFT-3820 Erlang: Detect OTP >= 18 to use new time correction 2016-07-23 15:12:42 +09:00
rebar.test.config THRIFT-4582: Fix Xenial CI build issues (#1563) 2018-06-09 23:02:12 -04:00

Thrift Erlang Software Library

License

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.

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

Example session using thrift_client:

1> {ok, C0} = thrift_client_util:new("localhost", 9090, thrift_test_thrift, []), ok.
ok
2> {C1, R1} = thrift_client:call(C0, testVoid, []), R1.
{ok,ok}
3> {C2, R2} = thrift_client:call(C1, testVoid, [asdf]), R2.
{error,{bad_args,testVoid,[asdf]}}
4> {C3, R3} = thrift_client:call(C2, testI32, [123]), R3.
{ok,123}
5> {C4, R4} = thrift_client:call(C3, testOneway, [1]), R4.
{ok,ok}
6> {C5, R5} = thrift_client:call(C4, testXception, ["foo"]), R5.
{error,{no_function,testXception}}
7> {C6, R6} = thrift_client:call(C5, testException, ["foo"]), R6.
{ok,ok}
8> {C7, R7} = (catch thrift_client:call(C6, testException, ["Xception"])), R7.
{exception,{xception,1001,<<"Xception">>}}