Package com.vaadin.signals.shared
Interface AbstractSignal.ResultConverter<T>
- Type Parameters:
T- the result value type
- All Superinterfaces:
Serializable
- Enclosing class:
AbstractSignal<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
protected static interface AbstractSignal.ResultConverter<T>
extends Serializable
Converts a command result into a specific value type.
-
Method Summary
Modifier and TypeMethodDescriptionconvert(CommandResult.Accept accept) Converts an accepted command result into a result value.
-
Method Details