user3077725
user3077725

Reputation: 793

Setting Couchbase obsPollInterval & obsPollMax in .NET client

In Couchbase Java client there are obsPollInterval & obsPollMax parameters that can be set on the client. How do I set the equivalent in .NET client?

obsPollInterval & obsPollMax

Upvotes: 0

Views: 288

Answers (1)

jeffrymorris
jeffrymorris

Reputation: 464

Not exactly, the two clients have slightly different implementations. The closest thing would be the ObserveTimeout configuration value which defaults to 1 minute and internally the observe will happen every 500ms until either the timeout is reached or operation succeeds.

More information regarding ObserveTimeout can be found here: http://docs.couchbase.com/couchbase-sdk-net-1.3/#appendix-configuring-the-net-client-library

Upvotes: 3

Related Questions