Package org.apache.ignite
Class IgniteClientDisconnectedException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.IgniteClientDisconnectedException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class IgniteClientDisconnectedException extends IgniteException Exception thrown from Ignite API when client node disconnected from cluster.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description IgniteClientDisconnectedException(IgniteFuture<?> reconnectFut, String msg)IgniteClientDisconnectedException(IgniteFuture<?> reconnectFut, String msg, @Nullable Throwable cause)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description IgniteFuture<?>reconnectFuture()- 
Methods inherited from class org.apache.ignite.IgniteExceptiongetCause, hasCause, toString
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
IgniteClientDisconnectedExceptionpublic IgniteClientDisconnectedException(IgniteFuture<?> reconnectFut, String msg) - Parameters:
- reconnectFut- Reconnect future.
- msg- Error message.
 
 - 
IgniteClientDisconnectedExceptionpublic IgniteClientDisconnectedException(IgniteFuture<?> reconnectFut, String msg, @Nullable @Nullable Throwable cause) - Parameters:
- reconnectFut- Reconnect future.
- msg- Error message.
- cause- Optional nested exception (can be- null).
 
 
- 
 - 
Method Detail- 
reconnectFuturepublic IgniteFuture<?> reconnectFuture() - Returns:
- Future that will be completed when client reconnected.
 
 
- 
 
-