Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.6.x spec #25

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api-spec-generated/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ service.


### Version information
*Version* : 0.6.0
*Version* : 0.6.1


### Contact information
Expand Down
7 changes: 4 additions & 3 deletions docs/api-spec-generated/paths.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,10 @@ Starts a stream delivery for the specified partitions of the given EventType.

The event stream is formatted as a sequence of `EventStreamBatch`es separated by `\n`. Each
`EventStreamBatch` contains a chunk of Events and a `Cursor` pointing to the **end** of the
chunk (i.e. last delivered Event). The cursor might specify the offset with the symbolic
value `BEGIN`, which will open the stream starting from the oldest available offset in the
partition.
chunk (i.e. last delivered Event). The default cursor position is at the front of the
stream, with new events that arrive being sent to the client. The cursor's position in the
stream can be specified by sending the value `BEGIN`, which opens the stream starting from
the oldest available offset in the partition.

Currently the `application/x-json-stream` format is the only one supported by the system,
but in the future other media types may be supported.
Expand Down
Loading