elixir-thrift
elixir-thrift copied to clipboard
A Pure Elixir Thrift Implementation
Bumps [credo](https://github.com/rrrene/credo) from 1.6.4 to 1.6.6. Changelog Sourced from credo's changelog. 1.6.6 Fix error when analysing single-line modules Fix false positive for Credo.Check.Readability.SpaceAroundOperators Fix false positive for Credo.Check.Warning.UnusedStringOperation Fix bug...
Bumps [dialyxir](https://github.com/jeremyjh/dialyxir) from 1.1.0 to 1.2.0. Changelog Sourced from dialyxir's changelog. Unreleased changes post [1.2.0] [1.2.0] - 2022-07-20 Added "github" formatter. Commits 04f1bda Bump version d38e42f feat: Adds a github...
Bumps [excoveralls](https://github.com/parroty/excoveralls) from 0.14.5 to 0.14.6. Release notes Sourced from excoveralls's releases. v0.14.6 Changes Survive coveralls maintenance and outagle (#283). Better handling of coveralls.io errors (ex. 405, 500 status codes)....
THeader is an optional wrapper for Thrift RPC messages that allows for requests to include out-of-band headers, useful for things like distributed tracing in service oriented architectures. This change only...
It looks like this is in the middle of a rewrite. My team is considering using this package and aren't sure which version to use. Is there somewhere that this...
Can the `Thrift.Parser` be extracted as a package? And be included as a dependency?
Currently, the only client/server implementations over the binary protocol are with framed transport. It would be swell if elixir-thrift could also generate implementations that use "unframed" (as described in the...
There are several kinds of standard functionality we need to apply on every Thrift endpoint. - Metrics (QPS, latency, request/response payload size) - Authorization (is the client allowed to call...
It would be nice to allow framed client to reconnect if other side closed connection because of client inactivity for example. In my personal case thrift library used as a...
First of all, thank you for this well written Thrift library. --- Want: to use Elixir with an existing Thrift web service written in Java. History: I tried to modify...