grpc-haskell icon indicating copy to clipboard operation
grpc-haskell copied to clipboard

gRPC library binding for Haskell.

Results 8 grpc-haskell issues
Sort by recently updated
recently updated
newest added
trafficstars

I have added grpc-haskell-core as a dependency in 'stack.yaml' as ``` resolver: lts-16.10 packages: - . extra-deps: - grpc-haskell-core-0.0.0.0@sha256:4bacd90915321750db570042cd05ada01b9b83c79f6bf6b6ccdef1889b383efa,3306 ``` and 'package.yaml' as ``` dependencies: - base >= 4.7 &&...

I just wanted to let you know that we have another open source implementation of Haskell bindings to grpc here: https://github.com/awakesecurity/gRPC-haskell We're happy to rename our library if you want....

The Rpc monad is defined as ```haskell type Rpc a = ExceptT RpcError IO a ``` which is problematic. It doesn't compose well. Catching errors in the monad gives a...

`c2hs` fails with errors like this; ``` Building grpc-0.1.0.0... Preprocessing library grpc-0.1.0.0... c2hs: C header contains errors: /usr/include/time.h:153: (column 72) [ERROR] >>> Syntax error ! The symbol `__attribute__' does not...

There's a [description of interop tests](https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md). Not all tests are implemented; - [x] empty_unary - [ ] cacheable_unary - [x] large_unary - [ ] client_compressed_unary - [ ] server_compressed_unary -...

The current `Rpc` monad does not capture `RECV_STATUS_ON_CLIENT` well. Should maybe check for each `Rpc` operation whether the status has been received, and if so, throw exception to end the...

The default timeout is no timeout, it'll wait indefinitely. See what other language bindings are doing and select a reasonable timeout.