Interface StreamThreadExceptionHandler
-
public interface StreamThreadExceptionHandlerInterface that specifies how to handle an uncaught exception from aStreamThread.- See Also:
Thread.UncaughtExceptionHandler,KafkaStreams.setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(KafkaStreamsContainer container, Thread streamThread, Throwable e)Method invoked when a StreamThread abruptly terminates due to an uncaught exception.
-
-
-
Method Detail
-
handle
void handle(KafkaStreamsContainer container, Thread streamThread, Throwable e)
Method invoked when a StreamThread abruptly terminates due to an uncaught exception.- Parameters:
container- the streams container.streamThread- the thread.e- the exception.
-
-