Skip navigation links
A B C E F H I L M N O P R S T V W 

A

actions() - Method in class io.whitfin.elasticsearch.bulk.BulkOperation
The list of actions associated with this operation.
actions() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
The list of actions associated with this operation.
actions(Iterable<? extends BulkAction>) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation.Builder
Sets or replaces all elements for actions list.
add(BulkAction...) - Method in class io.whitfin.elasticsearch.bulk.BulkOperator
Adds new BulkAction instances to the internal bulk operation builder.
addAction(BulkAction) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation.Builder
Adds one element to actions list.
addAction(BulkAction...) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation.Builder
Adds elements to actions list.
addAllActions(Iterable<? extends BulkAction>) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation.Builder
Adds elements to actions list.
afterBulk(long, BulkOperator, BulkOperation, Response) - Method in interface io.whitfin.elasticsearch.bulk.BulkLifecycle
Executes after a bulk execution.
afterBulk(long, BulkOperator, BulkOperation, Throwable) - Method in interface io.whitfin.elasticsearch.bulk.BulkLifecycle
Executes after a failed bulk execution.
afterBulk(long, BulkOperator, BulkOperation, Response) - Method in class io.whitfin.elasticsearch.bulk.lifecycle.NoopLifecycle
Executes after a bulk execution.
afterBulk(long, BulkOperator, BulkOperation, Throwable) - Method in class io.whitfin.elasticsearch.bulk.lifecycle.NoopLifecycle
Executes after a failed bulk execution.
afterBulk(long, BulkOperator, BulkOperation, Response) - Method in class io.whitfin.elasticsearch.bulk.lifecycle.RequeueLifecycle
Handles completion verification of a bulk execution.

B

beforeBulk(long, BulkOperator, BulkOperation) - Method in interface io.whitfin.elasticsearch.bulk.BulkLifecycle
Executes prior to the bulk request being forwarded to Elasticsearch.
beforeBulk(long, BulkOperator, BulkOperation) - Method in class io.whitfin.elasticsearch.bulk.lifecycle.NoopLifecycle
Executes prior to the bulk request being forwarded to Elasticsearch.
build() - Method in class io.whitfin.elasticsearch.bulk.BulkOperator.Builder
Constructs a new BulkOperator from this builder.
build() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Builds a new ImmutableBulkAction.
build() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation.Builder
builder() - Static method in class io.whitfin.elasticsearch.bulk.BulkAction
Returns a builder in order to create an action.
Builder() - Constructor for class io.whitfin.elasticsearch.bulk.BulkAction.Builder
 
builder() - Static method in class io.whitfin.elasticsearch.bulk.BulkOperation
Returns a builder in order to create an operation.
Builder() - Constructor for class io.whitfin.elasticsearch.bulk.BulkOperation.Builder
 
builder(RestClient) - Static method in class io.whitfin.elasticsearch.bulk.BulkOperator
Returns a builder in order to create an operator.
Builder() - Constructor for class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Creates a builder for ImmutableBulkAction instances.
Builder() - Constructor for class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation.Builder
Creates a builder for ImmutableBulkOperation instances.
BulkAction - Class in io.whitfin.elasticsearch.bulk
Interface for a bulk action as per the Elasticsearch API specification.
BulkAction() - Constructor for class io.whitfin.elasticsearch.bulk.BulkAction
 
BulkAction.Builder - Class in io.whitfin.elasticsearch.bulk
Builder bindings to allow for creating actions with validation.
BulkLifecycle - Interface in io.whitfin.elasticsearch.bulk
Lifecycle interface for bulk execution, providing the ability to hook into various stages of bulk execution.
BulkOperation - Class in io.whitfin.elasticsearch.bulk
Definition class of a bulk operation per the Elasticsearch Bulk API.
BulkOperation() - Constructor for class io.whitfin.elasticsearch.bulk.BulkOperation
 
BulkOperation.Builder - Class in io.whitfin.elasticsearch.bulk
Builder bindings to allow for creating operations with validation.
BulkOperator - Class in io.whitfin.elasticsearch.bulk
The BulkOperator controls batch execution against Elasticsearch via the Elasticsearch Bulk API.
BulkOperator.Builder - Class in io.whitfin.elasticsearch.bulk
Builder class for a BulkOperator to provide finer control over validation and mutability.

C

close() - Method in class io.whitfin.elasticsearch.bulk.BulkOperator
Closes all internal resources and sets the operator as closed.
concurrency(int) - Method in class io.whitfin.elasticsearch.bulk.BulkOperator.Builder
Modifies the concurrency associated with this builder.
copyOf(BulkAction) - Static method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Creates an immutable copy of a BulkAction value.
copyOf(BulkOperation) - Static method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
Creates an immutable copy of a BulkOperation value.

E

equals(Object) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
This instance is equal to all instances of ImmutableBulkAction that have equal attribute values.
equals(Object) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
This instance is equal to all instances of ImmutableBulkOperation that have equal attribute values.
estimatedSizeInBytes() - Method in class io.whitfin.elasticsearch.bulk.BulkOperation
The estimated size of this operation.
estimatedSizeInBytes() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
The estimated size of this operation.

F

flush() - Method in class io.whitfin.elasticsearch.bulk.BulkOperator
Flushes all actions contained in the current buffer.
from(BulkAction) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Fill a builder with attribute values from the provided BulkAction instance.
from(BulkOperation) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation.Builder
Fill a builder with attribute values from the provided BulkOperation instance.

H

hashCode() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Computes a hash code from attributes: operation, index, type, id, parent, routing, source, version, refresh, waitForActiveShards.
hashCode() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
Computes a hash code from attributes: actions, estimatedSizeInBytes, numberOfActions, payload.

I

id() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
The document identifier targeted by this action.
id(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the id attribute.
id() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
The document identifier targeted by this action.
ImmutableBulkAction - Class in io.whitfin.elasticsearch.bulk
Immutable implementation of BulkAction.
ImmutableBulkAction.Builder - Class in io.whitfin.elasticsearch.bulk
Builds instances of type ImmutableBulkAction.
ImmutableBulkOperation - Class in io.whitfin.elasticsearch.bulk
Immutable implementation of BulkOperation.
ImmutableBulkOperation.Builder - Class in io.whitfin.elasticsearch.bulk
Builds instances of type ImmutableBulkOperation.
index() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
The index targeted by this action.
index(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the index attribute.
index() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
The index targeted by this action.
interval(long) - Method in class io.whitfin.elasticsearch.bulk.BulkOperator.Builder
Modifies the interval associated with this builder.
io.whitfin.elasticsearch.bulk - package io.whitfin.elasticsearch.bulk
 
io.whitfin.elasticsearch.bulk.lifecycle - package io.whitfin.elasticsearch.bulk.lifecycle
 

L

lifecycle(BulkLifecycle) - Method in class io.whitfin.elasticsearch.bulk.BulkOperator.Builder
Modifies the lifecycle associated with this builder.

M

maxActions(Integer) - Method in class io.whitfin.elasticsearch.bulk.BulkOperator.Builder
Modifies the max number of actions associated with this builder.

N

NoopLifecycle - Class in io.whitfin.elasticsearch.bulk.lifecycle
A no-op lifecycle to act as a null lifecycle.
NoopLifecycle() - Constructor for class io.whitfin.elasticsearch.bulk.lifecycle.NoopLifecycle
 
numberOfActions() - Method in class io.whitfin.elasticsearch.bulk.BulkOperation
The number of actions in this operation.
numberOfActions() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
The number of actions in this operation.

O

operation() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
The type of operation to carry out inside this action.
operation(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the operation attribute.
operation() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
The type of operation to carry out inside this action.

P

parent() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
The parent identifier associated with this action.
parent(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the parent attribute.
parent() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
The parent identifier associated with this action.
payload() - Method in class io.whitfin.elasticsearch.bulk.BulkOperation
The textual representation of this operation.
payload() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
The textual representation of this operation.

R

refresh() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
Whether this action should cause a refresh or not.
refresh(Boolean) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the refresh attribute.
refresh() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Whether this action should cause a refresh or not.
RequeueLifecycle - Class in io.whitfin.elasticsearch.bulk.lifecycle
A lifecycle implementation which retries requests in case of error.
RequeueLifecycle() - Constructor for class io.whitfin.elasticsearch.bulk.lifecycle.RequeueLifecycle
 
routing() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
The routing identifier associated with this action.
routing(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the routing attribute.
routing() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
The routing identifier associated with this action.

S

source() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
The source body associated with this action.
source(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the source attribute.
source() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
The source body associated with this action.

T

toString() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Prints the immutable value BulkAction with attribute values.
toString() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
Prints the immutable value BulkOperation with attribute values.
type() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
The index type targeted by this action.
type(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the type attribute.
type() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
The index type targeted by this action.

V

version() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
The document version associated with this action.
version(Integer) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the version attribute.
version() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
The document version associated with this action.

W

waitForActiveShards() - Method in class io.whitfin.elasticsearch.bulk.BulkAction
Whether this action should wait for shards or not.
waitForActiveShards(Boolean) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction.Builder
Initializes the value for the waitForActiveShards attribute.
waitForActiveShards() - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Whether this action should wait for shards or not.
withActions(BulkAction...) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
Copy the current immutable object with elements that replace the content of actions.
withActions(Iterable<? extends BulkAction>) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkOperation
Copy the current immutable object with elements that replace the content of actions.
withId(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the id attribute.
withIndex(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the index attribute.
withOperation(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the operation attribute.
withParent(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the parent attribute.
withRefresh(Boolean) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the refresh attribute.
withRouting(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the routing attribute.
withSource(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the source attribute.
withType(String) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the type attribute.
withVersion(Integer) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the version attribute.
withWaitForActiveShards(Boolean) - Method in class io.whitfin.elasticsearch.bulk.ImmutableBulkAction
Copy the current immutable object by setting a value for the waitForActiveShards attribute.
A B C E F H I L M N O P R S T V W 
Skip navigation links

Copyright © 2017. All rights reserved.