Record InMemoryMsgReceiverRepo
java.lang.Object
java.lang.Record
io.memoria.jutils.adapter.messaging.InMemoryMsgReceiverRepo
- All Implemented Interfaces:
MsgReceiver,java.util.function.Supplier<reactor.core.publisher.Flux<Message>>
public record InMemoryMsgReceiverRepo(java.util.Map<java.lang.String,java.util.HashMap<java.lang.Integer,java.util.Queue<Message>>> db, MessageFilter mf) extends java.lang.Record implements MsgReceiver
-
Constructor Summary
Constructors Constructor Description InMemoryMsgReceiverRepo(java.util.Map<java.lang.String,java.util.HashMap<java.lang.Integer,java.util.Queue<Message>>> db, MessageFilter mf)Creates an instance of aInMemoryMsgReceiverReporecord. -
Method Summary
Modifier and Type Method Description java.util.Map<java.lang.String,java.util.HashMap<java.lang.Integer,java.util.Queue<Message>>>db()Returns the value of thedbrecord component.booleanequals(java.lang.Object o)Indicates whether some other object is "equal to" this one.reactor.core.publisher.Flux<Message>get()inthashCode()Returns a hash code value for this object.MessageFiltermf()Returns the value of themfrecord component.java.lang.StringtoString()Returns a string representation of this record.
-
Constructor Details
-
InMemoryMsgReceiverRepo
public InMemoryMsgReceiverRepo(java.util.Map<java.lang.String,java.util.HashMap<java.lang.Integer,java.util.Queue<Message>>> db, MessageFilter mf)Creates an instance of aInMemoryMsgReceiverReporecord.- Parameters:
db- the value for thedbrecord componentmf- the value for themfrecord component
-
-
Method Details
-
get
- Specified by:
getin interfacejava.util.function.Supplier<reactor.core.publisher.Flux<Message>>
-
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.
-
db
public java.util.Map<java.lang.String,java.util.HashMap<java.lang.Integer,java.util.Queue<Message>>> db()Returns the value of thedbrecord component.- Returns:
- the value of the
dbrecord component
-
mf
Returns the value of themfrecord component.- Returns:
- the value of the
mfrecord component
-