Record Class KeyFunctionEncoder<I,O>
java.lang.Object
java.lang.Record
org.infinispan.cache.impl.KeyFunctionEncoder<I,O>
- All Implemented Interfaces:
Function<org.reactivestreams.Publisher<I>, O>
,org.infinispan.commands.functional.functions.InjectableComponent
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionKeyFunctionEncoder
(Function<org.reactivestreams.Publisher<I>, O> innerFunction, DataConversion keyDataConversion) Creates an instance of aKeyFunctionEncoder
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.void
inject
(ComponentRegistry registry) Returns the value of theinnerFunction
record component.Returns the value of thekeyDataConversion
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
KeyFunctionEncoder
public KeyFunctionEncoder(Function<org.reactivestreams.Publisher<I>, O> innerFunction, DataConversion keyDataConversion) Creates an instance of aKeyFunctionEncoder
record class.- Parameters:
innerFunction
- the value for theinnerFunction
record componentkeyDataConversion
- the value for thekeyDataConversion
record component
-
-
Method Details
-
apply
-
inject
- Specified by:
inject
in interfaceorg.infinispan.commands.functional.functions.InjectableComponent
-
toString
-
hashCode
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
innerFunction
-
keyDataConversion
Returns the value of thekeyDataConversion
record component.- Returns:
- the value of the
keyDataConversion
record component
-