msgpack-rpc 0.3.1.2 → 0.3.1.3
raw patch · 2 files changed
+7/−1 lines, 2 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Network.MessagePackRpc.Client: disconnect :: Connection -> IO ()
Files
msgpack-rpc.cabal view
@@ -1,5 +1,5 @@ Name: msgpack-rpc-Version: 0.3.1.2+Version: 0.3.1.3 Synopsis: A MessagePack-RPC Implementation Description: A MessagePack-RPC Implementation <http://msgpack.org/>
src/Network/MessagePackRpc/Client.hs view
@@ -30,6 +30,7 @@ -- * RPC connection Connection, connect,+ disconnect, -- * RPC error RpcError(..),@@ -63,6 +64,11 @@ return $ Connection { connHandle = h }++-- | Disconnect a connection+disconnect :: Connection -> IO ()+disconnect Connection { connHandle = h } =+ hClose h -- | RPC error type data RpcError