🌊
Go to file
Vality Bot 3a60e5dc5b
🔄 Synced file(s) with valitydev/configurations (#4)
* 🔄 Created local '.github/workflows/basic-linters.yml' from remote 'workflows/base/basic-linters.yml'

* 🔄 Created local 'LICENSE' from remote 'LICENSE'

* 🔄 Created local '.github/settings.yml' from remote '.github/settings.yml'

* 🔄 Synced local '.github/settings.yml' with remote 'erlang/.github/settings.yml'
2022-11-16 18:08:11 +07:00
.github 🔄 Synced file(s) with valitydev/configurations (#4) 2022-11-16 18:08:11 +07:00
include Import from rbkmoney/thrift/lib/erlang ref: c017e5b 2016-05-06 20:32:38 +03:00
src Contribute "msgpack model" thrift protocol (#1) 2022-07-15 13:50:55 +03:00
test Error out properly when service missing some function 2021-09-13 17:52:18 +03:00
.gitignore Contribute "msgpack model" thrift protocol (#1) 2022-07-15 13:50:55 +03:00
coding_standards.md Initial import from rbkmoney/thrift/lib/erlang ref: 3f77fc6 2016-04-14 15:56:39 +03:00
LICENSE 🔄 Synced file(s) with valitydev/configurations (#4) 2022-11-16 18:08:11 +07:00
README.md Streamline ordsets validation 2020-08-17 12:24:21 +03:00
rebar.config Setup benchmarking 2020-08-13 19:15:44 +03:00
rebar.lock Contribute "msgpack model" thrift protocol (#1) 2022-07-15 13:50:55 +03:00
rebar.test.config Initial import from rbkmoney/thrift/lib/erlang ref: 3f77fc6 2016-04-14 15:56:39 +03: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.

Differences from upstream

  • Reads and writes are validated.
  • Enum values are atoms.
  • Maps represented with native Erlang maps.
  • Sets represented with ordsets.

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">>}}