Package org.apache.ignite
Interface IgnitionListener
- 
- All Superinterfaces:
- EventListener
 
 public interface IgnitionListener extends EventListener Listener for gird state change notifications. UseIgnition.addListener(IgnitionListener)to register this listener with grid factory.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonStateChange(@Nullable String name, IgniteState state)Listener for grid factory state change notifications.
 
- 
- 
- 
Method Detail- 
onStateChangevoid onStateChange(@Nullable @Nullable String name, IgniteState state)Listener for grid factory state change notifications.- Parameters:
- name- Ignite instance name (- nullfor default un-named Ignite instance).
- state- New state.
 
 
- 
 
-