Class ChunkedBulkSender.Result
java.lang.Object
ai.attackframework.tools.burp.utils.opensearch.ChunkedBulkSender.Result
- Enclosing class:
ChunkedBulkSender
Result of one chunked bulk request: success count and total documents sent.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal longEstimated payload bytes attempted in this bulk request.final intTotal number of documents sent in this bulk request.final longEstimated payload bytes for successful documents in this bulk request.final intNumber of documents that were successfully indexed. -
Constructor Summary
ConstructorsConstructorDescriptionResult(int successCount, int attemptedCount, long attemptedBytes, long successBytes) -
Method Summary
-
Field Details
-
successCount
public final int successCountNumber of documents that were successfully indexed. -
attemptedCount
public final int attemptedCountTotal number of documents sent in this bulk request. -
attemptedBytes
public final long attemptedBytesEstimated payload bytes attempted in this bulk request. -
successBytes
public final long successBytesEstimated payload bytes for successful documents in this bulk request.
-
-
Constructor Details
-
Result
public Result(int successCount, int attemptedCount, long attemptedBytes, long successBytes)
-
-
Method Details
-
isFullSuccess
public boolean isFullSuccess()
-