Package org.apache.ignite
Class IgniteCacheRestartingException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.IgniteCacheRestartingException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class IgniteCacheRestartingException extends IgniteException Exception thrown from ignite cache API if cache is restarting.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description IgniteCacheRestartingException(String cacheName)IgniteCacheRestartingException(IgniteFuture<?> restartFut, String cacheName)IgniteCacheRestartingException(IgniteFuture<?> restartFut, String cacheName, @Nullable Throwable cause)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description IgniteFuture<?>restartFuture()- 
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- 
IgniteCacheRestartingExceptionpublic IgniteCacheRestartingException(String cacheName) - Parameters:
- cacheName- Error message.
 
 - 
IgniteCacheRestartingExceptionpublic IgniteCacheRestartingException(IgniteFuture<?> restartFut, String cacheName) - Parameters:
- restartFut- Restart future.
- cacheName- Error message.
 
 - 
IgniteCacheRestartingExceptionpublic IgniteCacheRestartingException(IgniteFuture<?> restartFut, String cacheName, @Nullable @Nullable Throwable cause) - Parameters:
- restartFut- Restart future.
- cacheName- Cache name what is restarting.
- cause- Optional nested exception (can be- null).
 
 
- 
 - 
Method Detail- 
restartFuturepublic IgniteFuture<?> restartFuture() - Returns:
- Future that will be completed when cache is restarted.
 
 
- 
 
-