Package org.springframework.pulsar.core
Record Class PulsarTopic
java.lang.Object
java.lang.Record
org.springframework.pulsar.core.PulsarTopic
- Record Components:
topicName
- the topic namenumberOfPartitions
- the number of partitions, or 0 for non-partitioned topics
Model class for a Pulsar topic.
Use the
PulsarTopicBuilder
to create instances like this:
PulsarTopic topic = PulsarTopic.builder("topic-name").build();
- Author:
- Alexander Preuß
-
Constructor Summary
ConstructorDescriptionPulsarTopic
(String topicName, int numberOfPartitions) Creates an instance of aPulsarTopic
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic PulsarTopicBuilder
final boolean
Indicates whether some other object is "equal to" this one.org.springframework.pulsar.core.PulsarTopic.TopicComponents
Get the individual identifying components of a Pulsar topic.Get the fully-qualified name of the topic.final int
hashCode()
Returns a hash code value for this object.boolean
Checks if the topic is partitioned.int
Returns the value of thenumberOfPartitions
record component.Returns the value of thetopicName
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PulsarTopic
Creates an instance of aPulsarTopic
record class.- Parameters:
topicName
- the value for thetopicName
record componentnumberOfPartitions
- the value for thenumberOfPartitions
record component
-
-
Method Details
-
builder
-
isPartitioned
public boolean isPartitioned()Checks if the topic is partitioned.- Returns:
- true if the topic is partitioned
-
getComponents
public org.springframework.pulsar.core.PulsarTopic.TopicComponents getComponents()Get the individual identifying components of a Pulsar topic.- Returns:
PulsarTopic.TopicComponents
-
getFullyQualifiedTopicName
Get the fully-qualified name of the topic.- Returns:
- the fully-qualified topic name
-
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 '=='. -
topicName
Returns the value of thetopicName
record component.- Returns:
- the value of the
topicName
record component
-
numberOfPartitions
public int numberOfPartitions()Returns the value of thenumberOfPartitions
record component.- Returns:
- the value of the
numberOfPartitions
record component
-