thrift/lib/erl
Jens Geyer 7fc33be18c THRIFT-3085 thrift_reconnecting_client never tries to reconnect
CLient: Erlang
Patch: NOMORECOFFEE <github.coffee@hotmail.com>

This closes #427

gen_server does not handle message try_connect after unsuccessful connection, and gen_server always return {error, noconn}
2015-04-06 17:51:24 +02:00
..
include THRIFT-1801 Sync up TApplicationException codes across languages and thrift implementations 2012-12-22 21:31:03 +01:00
src THRIFT-3085 thrift_reconnecting_client never tries to reconnect 2015-04-06 17:51:24 +02:00
test THRIFT-2930 erlang module thriftTest_thrift referenced instead of thrift_test_thrift 2015-02-15 21:17:30 +01:00
coding_standards.md THRIFT-2724 - Coding standards template added all over project 2015-02-05 12:15:19 +01:00
Makefile.am THRIFT-2768: Whitespace Fixup 2014-10-03 20:42:54 +02:00
README.md THRIFT-2930 erlang module thriftTest_thrift referenced instead of thrift_test_thrift 2015-02-15 21:17:30 +01:00
rebar THRIFT-892 - refactor erlang library to build using rebar, move tests into lib/erl/test directory and run several via make check 2011-06-21 06:20:18 +00:00
rebar.config THRIFT-1357:Erlang Dependency breaks build 2014-07-16 19:54:02 +02: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">>}}