json_rpc_2 1.1.1 json_rpc_2: ^1.1.1 copied to clipboard
An implementation of the JSON-RPC 2.0 spec.
1.1.1 #
- Update the README to match the current API.
1.1.0 #
- Add a
done
getter toClient
,Server
, andPeer
.
1.0.0 #
-
Add a
Client
class for communicating with external JSON-RPC 2.0 servers. -
Add a
Peer
class that's both aClient
and aServer
.
0.1.0 #
-
Remove
Server.handleRequest()
andServer.parseRequest()
. Instead,new Server()
takes aStream
and aStreamSink
and uses those behind-the-scenes for its communication. -
Add
Server.listen()
, which causes the server to begin listening to the underlying request stream. -
Add
Server.close()
, which closes the underlying request stream and response sink.
0.0.2+3 #
- Widen the version constraint for
stack_trace
.
0.0.2+2 #
- Fix error response to include data from
RpcException
when not a map.