Package com.hazelcast.query.extractor
Interface ValueCallback<T>
-
- Type Parameters:
T
- type of the extracted value
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ValueCallback<T>
Enables notifying about values extracted in aValueExtractor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onResult(T value)
Notifies about a value passed as an argument
-
-
-
Method Detail
-
onResult
void onResult(T value)
Notifies about a value passed as an argument- Parameters:
value
- value to be notified about
-
-