ChangesFeedMode Enumeration |
The mode to send or request a changes feed in
Namespace:
Couchbase.Lite.Replicator
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax [SerializableAttribute]
public enum ChangesFeedMode
Members
| Member name | Value | Description |
---|
| Normal | 0 |
A one-shot
|
| LongPoll | 1 |
The connection will remain open until the next change made to the database, and then the information
will be sent and the connection closed
|
| Continuous | 2 |
Similar to LongPoll, but the connection remains open indefinitely
|
| EventSource | 3 |
Uses the Mozilla event source format to sent changes continuously
|
See Also