@FunctionalInterface public interface CbConfiguration<T,U> extends SerializableLambda
The T generic parameter represents the type of the class on which the callback is invoked on.
The U generic parameter represents the type of the configuration class passed to the callback argument.
Using such callback provides a way for creating type-safe configurations from the actual Dictionary that is
normally injected by Dependency Manager.
For more information about configuration types, please refer to ConfigurationDependencyBuilder.
| Modifier and Type | Method and Description |
|---|---|
void |
accept(T instance,
U configuration)
Handles the given arguments
|
default CbConfiguration<T,U> |
andThen(CbConfiguration<T,U> after) |
void accept(T instance, U configuration)
instance - the Component implementation instance on which the callback is invoked on.configuration - the configuration proxydefault CbConfiguration<T,U> andThen(CbConfiguration<T,U> after)