org.springframework.integration.util
Class ErrorHandlingTaskExecutor

java.lang.Object
  extended by org.springframework.integration.util.ErrorHandlingTaskExecutor
All Implemented Interfaces:
java.util.concurrent.Executor, TaskExecutor

public class ErrorHandlingTaskExecutor
extends java.lang.Object
implements TaskExecutor

A TaskExecutor implementation that wraps an existing Executor instance in order to catch any exceptions. If an exception is thrown, it will be handled by the provided ErrorHandler.


Constructor Summary
ErrorHandlingTaskExecutor(java.util.concurrent.Executor executor, ErrorHandler errorHandler)
           
 
Method Summary
 void execute(java.lang.Runnable task)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ErrorHandlingTaskExecutor

public ErrorHandlingTaskExecutor(java.util.concurrent.Executor executor,
                                 ErrorHandler errorHandler)
Method Detail

execute

public void execute(java.lang.Runnable task)
Specified by:
execute in interface java.util.concurrent.Executor
Specified by:
execute in interface TaskExecutor