Click or drag to resize

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
C#
[SerializableAttribute]
public enum ChangesFeedMode
Members
  Member nameValueDescription
Normal0 A one-shot
LongPoll1 The connection will remain open until the next change made to the database, and then the information will be sent and the connection closed
Continuous2 Similar to LongPoll, but the connection remains open indefinitely
EventSource3 Uses the Mozilla event source format to sent changes continuously
See Also