Record NatsMsgReceiver
java.lang.Object
java.lang.Record
io.memoria.jutils.messaging.adapter.nats.NatsMsgReceiver
- All Implemented Interfaces:
MsgReceiver
public record NatsMsgReceiver(io.nats.client.Connection nc, reactor.core.scheduler.Scheduler scheduler, java.time.Duration timeout) extends java.lang.Record implements MsgReceiver
-
Constructor Summary
Constructors Constructor Description NatsMsgReceiver(io.nats.client.Connection nc, reactor.core.scheduler.Scheduler scheduler, java.time.Duration timeout)Creates an instance of aNatsMsgReceiverrecord. -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)Indicates whether some other object is "equal to" this one.inthashCode()Returns a hash code value for this object.io.nats.client.Connectionnc()Returns the value of thencrecord component.reactor.core.publisher.Flux<Message>receive(java.lang.String topic, int partition, long offset)reactor.core.scheduler.Schedulerscheduler()Returns the value of theschedulerrecord component.java.time.Durationtimeout()Returns the value of thetimeoutrecord component.java.lang.StringtoString()Returns a string representation of this record.
-
Constructor Details
-
NatsMsgReceiver
public NatsMsgReceiver(io.nats.client.Connection nc, reactor.core.scheduler.Scheduler scheduler, java.time.Duration timeout)Creates an instance of aNatsMsgReceiverrecord.- Parameters:
nc- the value for thencrecord componentscheduler- the value for theschedulerrecord componenttimeout- the value for thetimeoutrecord component
-
-
Method Details
-
receive
public reactor.core.publisher.Flux<Message> receive(java.lang.String topic, int partition, long offset)- Specified by:
receivein interfaceMsgReceiver
-
toString
public java.lang.String toString()Returns a string representation of this record. The representation contains the name of the type, followed by the name and value of each of the record components.- Specified by:
toStringin classjava.lang.Record- Returns:
- a string representation of this object
-
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.- Specified by:
hashCodein classjava.lang.Record- Returns:
- a hash code value for this object
-
equals
public final boolean equals(java.lang.Object o)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. All components in this record are compared withObjects::equals(Object,Object).- Specified by:
equalsin classjava.lang.Record- Parameters:
o- the object with which to compare- Returns:
trueif this object is the same as theoargument;falseotherwise.
-
nc
public io.nats.client.Connection nc()Returns the value of thencrecord component.- Returns:
- the value of the
ncrecord component
-
scheduler
public reactor.core.scheduler.Scheduler scheduler()Returns the value of theschedulerrecord component.- Returns:
- the value of the
schedulerrecord component
-
timeout
public java.time.Duration timeout()Returns the value of thetimeoutrecord component.- Returns:
- the value of the
timeoutrecord component
-