Skip to content

Commit

Permalink
Merge pull request #7963 from tlossen/patch-1
Browse files Browse the repository at this point in the history
documentation: fixed typo
  • Loading branch information
gyuho authored May 22, 2017
2 parents 4cd5e7e + 20a747e commit 378bac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/learning/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ message Event {
Watches are long-running requests and use gRPC streams to stream event data. A watch stream is bi-directional; the client writes to the stream to establish watches and reads to receive watch event. A single watch stream can multiplex many distinct watches by tagging events with per-watch identifiers. This multiplexing helps reducing the memory footprint and connection overhead on the core etcd cluster.

Watches make three guarantees about events:
* Ordered - events are ordered by revision; an event will never appear on a watch if it precedes an event in time that has already already been posted.
* Ordered - events are ordered by revision; an event will never appear on a watch if it precedes an event in time that has already been posted.
* Reliable - a sequence of events will never drop any subsequence of events; if there are events ordered in time as a < b < c, then if the watch receives events a and c, it is guaranteed to receive b.
* Atomic - a list of events is guaranteed to encompass complete revisions; updates in the same revision over multiple keys will not be split over several lists of events.

Expand Down

0 comments on commit 378bac7

Please sign in to comment.