Package net.blakez.bppmq.core.queue
Record Class MetaRecord
java.lang.Object
java.lang.Record
net.blakez.bppmq.core.queue.MetaRecord
- Record Components:
_id
- The unique identifier for this metadata record.topic
- The name of the topic.start
- The starting index of messages available in the topic.count
- The total number of messages currently in the topic.
Represents metadata about messages in a topic.
- Author:
- Peter Blakeley : @pblakez pb@blakez.org
-
Constructor Summary
ConstructorsConstructorDescriptionMetaRecord
(String topic, long start, long count) Constructor that automatically generates a metadata ID based on topic.MetaRecord
(String _id, String topic, long start, long count) Creates an instance of aMetaRecord
record class. -
Method Summary
Modifier and TypeMethodDescription_id()
Returns the value of the_id
record component.long
count()
Returns the value of thecount
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.long
start()
Returns the value of thestart
record component.topic()
Returns the value of thetopic
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
MetaRecord
Constructor that automatically generates a metadata ID based on topic.- Parameters:
topic
- The name of the topic.start
- The starting index of messages available in the topic.count
- The total number of messages currently in the topic.
-
MetaRecord
Creates an instance of aMetaRecord
record class.
-
-
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 '=='. -
_id
Returns the value of the_id
record component.- Returns:
- the value of the
_id
record component
-
topic
Returns the value of thetopic
record component.- Returns:
- the value of the
topic
record component
-
start
public long start()Returns the value of thestart
record component.- Returns:
- the value of the
start
record component
-
count
public long count()Returns the value of thecount
record component.- Returns:
- the value of the
count
record component
-