Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(462)

Side by Side Diff: pkg/json_rpc_2/CHANGELOG.md

Issue 707063002: Add a Peer class to json_rpc_2. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/json_rpc_2/lib/json_rpc_2.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.0.0 1 ## 1.0.0
2 2
3 * Add a `Client` class for communicating with external JSON-RPC 2.0 servers. 3 * Add a `Client` class for communicating with external JSON-RPC 2.0 servers.
4 4
5 * Add a `Peer` class that's both a `Client` and a `Server`.
6
5 ## 0.1.0 7 ## 0.1.0
6 8
7 * Remove `Server.handleRequest()` and `Server.parseRequest()`. Instead, `new 9 * Remove `Server.handleRequest()` and `Server.parseRequest()`. Instead, `new
8 Server()` takes a `Stream` and a `StreamSink` and uses those behind-the-scenes 10 Server()` takes a `Stream` and a `StreamSink` and uses those behind-the-scenes
9 for its communication. 11 for its communication.
10 12
11 * Add `Server.listen()`, which causes the server to begin listening to the 13 * Add `Server.listen()`, which causes the server to begin listening to the
12 underlying request stream. 14 underlying request stream.
13 15
14 * Add `Server.close()`, which closes the underlying request stream and response 16 * Add `Server.close()`, which closes the underlying request stream and response
15 sink. 17 sink.
16 18
17 ## 0.0.2+3 19 ## 0.0.2+3
18 20
19 * Widen the version constraint for `stack_trace`. 21 * Widen the version constraint for `stack_trace`.
20 22
21 ## 0.0.2+2 23 ## 0.0.2+2
22 24
23 * Fix error response to include data from `RpcException` when not a map. 25 * Fix error response to include data from `RpcException` when not a map.
OLDNEW
« no previous file with comments | « no previous file | pkg/json_rpc_2/lib/json_rpc_2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698