Interface ApplicationInstanceHandler
-
- 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 ApplicationInstanceHandler
Handler function to be invoked when a child application instance is started.- Since:
- 1.4.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonInstanceStarted(ApplicationInstance instance)Executed when a child application instance is started.
-
-
-
Method Detail
-
onInstanceStarted
void onInstanceStarted(ApplicationInstance instance)
Executed when a child application instance is started.- Parameters:
instance- the started application instance, nevernull
-
-