Record Class EntryFunctionEncoder<K,V,O>
java.lang.Object
java.lang.Record
org.infinispan.cache.impl.EntryFunctionEncoder<K,V,O>
- All Implemented Interfaces:
Function<org.reactivestreams.Publisher<CacheEntry<K,
,V>>, O> org.infinispan.commands.functional.functions.InjectableComponent
public record EntryFunctionEncoder<K,V,O> (Function<org.reactivestreams.Publisher<CacheEntry<K,V>>, O> innerFunction, EncoderEntryMapper<K, V, CacheEntry<K,V>> mapper)
extends Record
implements Function<org.reactivestreams.Publisher<CacheEntry<K,V>>, O>, org.infinispan.commands.functional.functions.InjectableComponent
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionEntryFunctionEncoder
(Function<org.reactivestreams.Publisher<CacheEntry<K, V>>, O> innerFunction, EncoderEntryMapper<K, V, CacheEntry<K, V>> mapper) Creates an instance of aEntryFunctionEncoder
record class. -
Method Summary
Modifier and TypeMethodDescriptionapply
(org.reactivestreams.Publisher<CacheEntry<K, V>> iPublisher) final 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) Function
<org.reactivestreams.Publisher<CacheEntry<K, V>>, O> Returns the value of theinnerFunction
record component.EncoderEntryMapper
<K, V, CacheEntry<K, V>> mapper()
Returns the value of themapper
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
EntryFunctionEncoder
public EntryFunctionEncoder(Function<org.reactivestreams.Publisher<CacheEntry<K, V>>, O> innerFunction, EncoderEntryMapper<K, V, CacheEntry<K, V>> mapper) Creates an instance of aEntryFunctionEncoder
record class.- Parameters:
innerFunction
- the value for theinnerFunction
record componentmapper
- the value for themapper
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
Returns the value of theinnerFunction
record component.- Returns:
- the value of the
innerFunction
record component
-
mapper
Returns the value of themapper
record component.- Returns:
- the value of the
mapper
record component
-