Package org.apache.flink.runtime.rpc
Interface FatalErrorHandler
-
public interface FatalErrorHandlerHandler for fatal errors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFatalError(Throwable exception)Being called when a fatal error occurs.
-
-
-
Method Detail
-
onFatalError
void onFatalError(Throwable exception)
Being called when a fatal error occurs.IMPORTANT: This call should never be blocking since it might be called from within the main thread of an
RpcEndpoint.- Parameters:
exception- cause
-
-