x-cubed / event-store-client

JS client library for connecting to Event Store over TCP/IP
The Unlicense
71 stars 24 forks source link

Catchup Subscription #3

Closed PaulGrimshaw closed 8 years ago

PaulGrimshaw commented 8 years ago

How does one start a catchup subscription through this client?

x-cubed commented 8 years ago

That's not currently supported, but you can achieve the same thing by subscribing to a stream, then reading the existing events from the stream up to the point where your subscription started.

Feel free to submit a pull request that implements that functionality.

x-cubed commented 8 years ago

This functionality has been merged in thanks to @ZBlocker655's pull request.