Package org.graylog2.indexer.messages
Record Class ChunkedBulkIndexer.BulkIndexResult
java.lang.Object
java.lang.Record
org.graylog2.indexer.messages.ChunkedBulkIndexer.BulkIndexResult
- Enclosing class:
- ChunkedBulkIndexer
public static record ChunkedBulkIndexer.BulkIndexResult(IndexingResults indexingResults, Supplier<String> failureMessage, int indexedMessages)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionBulkIndexResult(IndexingResults indexingResults, Supplier<String> failureMessage, int indexedMessages) Creates an instance of aBulkIndexResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of thefailureMessagerecord component.final inthashCode()Returns a hash code value for this object.intReturns the value of theindexedMessagesrecord component.Returns the value of theindexingResultsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
BulkIndexResult
public BulkIndexResult(IndexingResults indexingResults, Supplier<String> failureMessage, int indexedMessages) Creates an instance of aBulkIndexResultrecord class.- Parameters:
indexingResults- the value for theindexingResultsrecord componentfailureMessage- the value for thefailureMessagerecord componentindexedMessages- the value for theindexedMessagesrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
indexingResults
Returns the value of theindexingResultsrecord component.- Returns:
- the value of the
indexingResultsrecord component
-
failureMessage
Returns the value of thefailureMessagerecord component.- Returns:
- the value of the
failureMessagerecord component
-
indexedMessages
public int indexedMessages()Returns the value of theindexedMessagesrecord component.- Returns:
- the value of the
indexedMessagesrecord component
-