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

Haskell implementation of MessagePack / msgpack.org[Haskell]

Results 22 msgpack-haskell issues
Sort by recently updated
recently updated
newest added

Can you please publish the latest version on Hackage? I need to depend on the latest changes for one of my libraries

This is a conflict-free version of #65 ; let me know if that is still interesting for you.

Hi! This PR adds support for Unix domain sockets.

enhancement
RPC

`execClient` returns `IO ()`, so it always returns unit, preventing me from turning a `Client a` into an `IO a`. I'd like to be able to call an rpc method...

enhancement
RPC

I was able to build it successfully without any change.

All member variables of Java clients are initialized with `null`. This patch set default values (e.g. new ArrayList()) of member variables.

IDL

Java client classes have a constructor signature like: ``` java public MyClient(String host, int port, double timeout_sec) { ``` But `timeout_sec` is currently ignored in generated Java code. This patch...

IDL

I had to write some `Packable` and `Unpackable` instances for my own data structure and for this found the primitives in the package very useful. Unfortunately, they are not exposed,...

Preliminary Haskell support for RPC across ZeroMQ Rep-Req sockets. This pull request aims to stimulate discussion to find the best approach for abstracting the transport layer from the Haskell msgpack...

IDL
RPC

In former implementation, tuple in idl is realized as generic class Tuple. But it cannot be deserialized in msgpack type. This pull request is patch for this problem. Instead of...

IDL