case class IoConfig(mutationTokensEnabled: Boolean = true, dnsSrvEnabled: Option[Boolean] = None, configPollInterval: Option[Duration] = None, kvCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, queryCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, viewCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, searchCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, analyticsCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, managerCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, captureTraffic: Option[Set[ServiceType]] = None, networkResolution: Option[NetworkResolution] = None, tcpKeepAlivesEnabled: Option[Boolean] = None, tcpKeepAliveTime: Option[Duration] = None, numKvConnections: Option[Int] = None, maxHttpConnections: Option[Int] = None, idleHttpConnectionTimeout: Option[Duration] = None, configIdleRedialTimeout: Option[Duration] = None) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IoConfig
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new IoConfig(mutationTokensEnabled: Boolean = true, dnsSrvEnabled: Option[Boolean] = None, configPollInterval: Option[Duration] = None, kvCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, queryCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, viewCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, searchCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, analyticsCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, managerCircuitBreakerConfig: Option[CircuitBreakerConfig] = None, captureTraffic: Option[Set[ServiceType]] = None, networkResolution: Option[NetworkResolution] = None, tcpKeepAlivesEnabled: Option[Boolean] = None, tcpKeepAliveTime: Option[Duration] = None, numKvConnections: Option[Int] = None, maxHttpConnections: Option[Int] = None, idleHttpConnectionTimeout: Option[Duration] = None, configIdleRedialTimeout: Option[Duration] = None)

Value Members

  1. def analyticsCircuitBreakerConfig(value: CircuitBreakerConfig): IoConfig

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for analytics operations.

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for analytics operations.

    returns

    this, for chaining

  2. def captureTraffic(value: Set[ServiceType]): IoConfig

    Configures whether network traffic should be captured on one or more services.

    Configures whether network traffic should be captured on one or more services.

    returns

    this, for chaining

  3. def configIdleRedialTimeout(value: Duration): IoConfig
  4. def configPollInterval(value: Duration): IoConfig

    Configures how frequently it will poll for new configs.

    Configures how frequently it will poll for new configs.

    returns

    this, for chaining

  5. def enableDnsSrv(value: Boolean): IoConfig

    Configures that DNS SRV should be used.

    Configures that DNS SRV should be used.

    returns

    this, for chaining

  6. def enableTcpKeepAlives(value: Boolean): IoConfig

    Configure whether TCP keep-alives will be sent.

    Configure whether TCP keep-alives will be sent.

    returns

    this, for chaining

  7. def idleHttpConnectionTimeout(value: Duration): IoConfig
  8. def kvCircuitBreakerConfig(value: CircuitBreakerConfig): IoConfig

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for key-value operations.

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for key-value operations.

    returns

    this, for chaining

  9. def managerCircuitBreakerConfig(value: CircuitBreakerConfig): IoConfig

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for management operations.

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for management operations.

    returns

    this, for chaining

  10. def maxHttpConnections(value: Int): IoConfig

    Configure the maximum number of HTTP connections to create.

    Configure the maximum number of HTTP connections to create.

    returns

    this, for chaining

  11. def mutationTokensEnabled(value: Boolean): IoConfig

    Configures whether mutation tokens will be returned from the server for all mutation operations.

    Configures whether mutation tokens will be returned from the server for all mutation operations.

    returns

    this, for chaining

  12. def networkResolution(value: NetworkResolution): IoConfig

    Configures the network resolution setting to use.

    Configures the network resolution setting to use.

    returns

    this, for chaining

  13. def numKvConnections(value: Int): IoConfig

    Configure the number of connections to the KV service that will be created, per-node.

    Configure the number of connections to the KV service that will be created, per-node.

    returns

    this, for chaining

  14. def productElementNames: Iterator[String]
    Definition Classes
    Product
  15. def queryCircuitBreakerConfig(value: CircuitBreakerConfig): IoConfig

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for query operations.

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for query operations.

    returns

    this, for chaining

  16. def searchCircuitBreakerConfig(value: CircuitBreakerConfig): IoConfig

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for search operations.

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for search operations.

    returns

    this, for chaining

  17. def tcpKeepAliveTime(value: Duration): IoConfig

    Configure the time between sending TCP keep-alives.

    Configure the time between sending TCP keep-alives.

    returns

    this, for chaining

  18. def viewCircuitBreakerConfig(value: CircuitBreakerConfig): IoConfig

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for view operations.

    Configures a com.couchbase.client.core.endpoint.CircuitBreaker to use for view operations.

    returns

    this, for chaining