Interface EntryProcessor<K,V,R>
- Type Parameters:
K- the logical key typeV- the logical value typeR- the logical result type
- All Superinterfaces:
Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Serializable entry processor contract used by the client wire API.
Implementations must be registered with the client and server
KryoSerializer instances before they can be sent over the wire.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceMutable entry view presented to a processor. -
Method Summary
Modifier and TypeMethodDescription@Nullable Rprocess(EntryProcessor.Entry<K, V> entry) Process the supplied mutable entry.
-
Method Details
-
process
Process the supplied mutable entry.- Parameters:
entry- mutable entry view- Returns:
- processor result, possibly
null
-