Package org.apache.ignite.client
Interface ClientDisconnectListener
- 
 public interface ClientDisconnectListenerClient disconnected event listener. Such listeners can be used inClientCache.query(ContinuousQuery, ClientDisconnectListener)orClientCache.registerCacheEntryListener(CacheEntryListenerConfiguration, ClientDisconnectListener)methods to handle client channel failure.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonDisconnected(Exception reason)Client disconnected callback.
 
- 
- 
- 
Method Detail- 
onDisconnectedvoid onDisconnected(Exception reason) Client disconnected callback.- Parameters:
- reason- Exception that caused the disconnect, can be- null.
 
 
- 
 
-