Package org.graylog2.indexer.messages
Record Class ChunkedBulkIndexer.Chunk
java.lang.Object
java.lang.Record
org.graylog2.indexer.messages.ChunkedBulkIndexer.Chunk
- Enclosing class:
- ChunkedBulkIndexer
public static record ChunkedBulkIndexer.Chunk(List<IndexingRequest> requests, int offset, int size)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionChunk(List<IndexingRequest> requests, int offset, int size) Creates an instance of aChunkrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intoffset()Returns the value of theoffsetrecord component.requests()Returns the value of therequestsrecord component.intsize()Returns the value of thesizerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Chunk
Creates an instance of aChunkrecord class.- Parameters:
requests- the value for therequestsrecord componentoffset- the value for theoffsetrecord componentsize- the value for thesizerecord 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 '=='. -
requests
Returns the value of therequestsrecord component.- Returns:
- the value of the
requestsrecord component
-
offset
public int offset()Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
size
public int size()Returns the value of thesizerecord component.- Returns:
- the value of the
sizerecord component
-