Class ChunkedBulkSender.Result

java.lang.Object
ai.attackframework.tools.burp.utils.opensearch.ChunkedBulkSender.Result
Enclosing class:
ChunkedBulkSender

public static final class ChunkedBulkSender.Result extends Object
Result of one chunked bulk request: success count and total documents sent.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final long
    Estimated payload bytes attempted in this bulk request.
    final int
    Total number of documents sent in this bulk request.
    final long
    Estimated payload bytes for successful documents in this bulk request.
    final int
    Number of documents that were successfully indexed.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Result(int successCount, int attemptedCount, long attemptedBytes, long successBytes)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • successCount

      public final int successCount
      Number of documents that were successfully indexed.
    • attemptedCount

      public final int attemptedCount
      Total number of documents sent in this bulk request.
    • attemptedBytes

      public final long attemptedBytes
      Estimated payload bytes attempted in this bulk request.
    • successBytes

      public final long successBytes
      Estimated 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()