sealed trait BulkRequest extends ElasticRequest[BulkResponse] with HasRefresh[BulkRequest] with HasRouting[BulkRequest]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BulkRequest
  2. HasRouting
  3. HasRefresh
  4. ElasticRequest
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def refresh(value: Boolean): BulkRequest

    Configures whether or not to refresh the index after the operation in the zio.elasticsearch.ElasticRequest.

    Configures whether or not to refresh the index after the operation in the zio.elasticsearch.ElasticRequest.

    value

    should be true if the index should be refreshed after the executed operation, false otherwise

    returns

    an instance of the zio.elasticsearch.ElasticRequest enriched with the refresh parameter.

    Definition Classes
    HasRefresh
  2. abstract def routing(value: elasticsearch.Routing): BulkRequest

    Specifies a routing value to be used for this zio.elasticsearch.ElasticRequest.

    Specifies a routing value to be used for this zio.elasticsearch.ElasticRequest.

    value

    the Routing value to set for the zio.elasticsearch.ElasticRequest

    returns

    an instance of the zio.elasticsearch.ElasticRequest enriched with the routing parameter.

    Definition Classes
    HasRouting

Concrete Value Members

  1. final def refreshFalse: BulkRequest

    Sets refresh parameter to false in the zio.elasticsearch.ElasticRequest.

    Sets refresh parameter to false in the zio.elasticsearch.ElasticRequest. Same as refresh(false).

    returns

    a new instance of the zio.elasticsearch.ElasticRequest with the refresh parameter set to false.

    Definition Classes
    HasRefresh
    See also

    #refresh

  2. final def refreshTrue: BulkRequest

    Sets refresh parameter to true in the zio.elasticsearch.ElasticRequest.

    Sets refresh parameter to true in the zio.elasticsearch.ElasticRequest. Same as refresh(true).

    returns

    a new instance of the zio.elasticsearch.ElasticRequest with the refresh parameter set to true.

    Definition Classes
    HasRefresh
    See also

    #refresh