SearchIndexingBufferedSender<T> Class
- java.
lang. Object - com.
azure. search. documents. SearchIndexingBufferedSender<T>
- com.
Type Parameters
- T
The type of the document handled by this buffered indexing sender.
public final class SearchIndexingBufferedSender<T>
This class provides a buffered sender that contains operations for conveniently indexing documents to an Azure Search index.
Method Summary
| Modifier and Type | Method and Description |
|---|---|
| void |
addActions(Collection<IndexAction> actions)
Adds document index actions to the batch. |
| void |
addActions(Collection<IndexAction> actions, Duration timeout, RequestOptions requestOptions)
Adds document index actions to the batch. |
| void |
addDeleteActions(Collection<T> documents)
Adds delete document actions to the batch. |
| void |
addDeleteActions(Collection<T> documents, Duration timeout, RequestOptions requestOptions)
Adds delete document actions to the batch. |
| void |
addMergeActions(Collection<T> documents)
Adds merge document actions to the batch. |
| void |
addMergeActions(Collection<T> documents, Duration timeout, RequestOptions requestOptions)
Adds merge document actions to the batch. |
| void |
addMergeOrUploadActions(Collection<T> documents)
Adds merge or upload document actions to the batch. |
| void |
addMergeOrUploadActions(Collection<T> documents, Duration timeout, RequestOptions requestOptions)
Adds merge or upload document actions to the batch. |
| void |
addUploadActions(Collection<T> documents)
Adds upload document actions to the batch. |
| void |
addUploadActions(Collection<T> documents, Duration timeout, RequestOptions requestOptions)
Adds upload document actions to the batch. |
| void |
close()
Closes the buffered sender, any documents remaining in the batch will be sent to the Search index for indexing. |
| void |
close(Duration timeout, RequestOptions requestOptions)
Closes the buffered, any documents remaining in the batch yet to be sent to the Search index for indexing. |
| void |
flush()
Sends the current batch of documents to be indexed. |
| void |
flush(Duration timeout, RequestOptions requestOptions)
Sends the current batch of documents to be indexed. |
|
Collection<Index |
getActions()
Gets the list of IndexAction in the batch that are ready to be indexed. |
Methods inherited from java.lang.Object
Method Details
addActions
public void addActions(Collection<IndexAction> actions)
Adds document index actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addActions
public void addActions(Collection<IndexAction> actions, Duration timeout, RequestOptions requestOptions)
Adds document index actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addDeleteActions
public void addDeleteActions(Collection<T> documents)
Adds delete document actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addDeleteActions
public void addDeleteActions(Collection<T> documents, Duration timeout, RequestOptions requestOptions)
Adds delete document actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addMergeActions
public void addMergeActions(Collection<T> documents)
Adds merge document actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addMergeActions
public void addMergeActions(Collection<T> documents, Duration timeout, RequestOptions requestOptions)
Adds merge document actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addMergeOrUploadActions
public void addMergeOrUploadActions(Collection<T> documents)
Adds merge or upload document actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addMergeOrUploadActions
public void addMergeOrUploadActions(Collection<T> documents, Duration timeout, RequestOptions requestOptions)
Adds merge or upload document actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addUploadActions
public void addUploadActions(Collection<T> documents)
Adds upload document actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
addUploadActions
public void addUploadActions(Collection<T> documents, Duration timeout, RequestOptions requestOptions)
Adds upload document actions to the batch.
If the client is enabled for automatic batch sending, adding documents may trigger the batch to be sent for indexing.
Parameters:
close
public void close()
Closes the buffered sender, any documents remaining in the batch will be sent to the Search index for indexing.
Once the buffered sender has been closed any attempts to add documents or flush it will cause an IllegalStateException to be thrown.
close
public void close(Duration timeout, RequestOptions requestOptions)
Closes the buffered, any documents remaining in the batch yet to be sent to the Search index for indexing.
Once the buffered sender has been closed any attempts to add documents or flush it will cause an IllegalStateException to be thrown.
Parameters:
flush
public void flush()
Sends the current batch of documents to be indexed.
flush
public void flush(Duration timeout, RequestOptions requestOptions)
Sends the current batch of documents to be indexed.
Parameters:
getActions
public Collection<IndexAction> getActions()
Gets the list of IndexAction in the batch that are ready to be indexed.
Returns: