org.apache.camel.processor
Class DelayProcessorSupport

java.lang.Object
  extended by org.apache.camel.impl.ServiceSupport
      extended by org.apache.camel.processor.DelegateAsyncProcessor
          extended by org.apache.camel.processor.DelayProcessorSupport
All Implemented Interfaces:
AsyncProcessor, Navigate<Processor>, Processor, Service, ShutdownableService
Direct Known Subclasses:
Delayer, DelayInterceptor, Throttler

public abstract class DelayProcessorSupport
extends DelegateAsyncProcessor

A useful base class for any processor which provides some kind of throttling or delayed processing.

This implementation will block while waiting.

Version:

Field Summary
protected  org.slf4j.Logger log
           
 
Fields inherited from class org.apache.camel.processor.DelegateAsyncProcessor
processor
 
Constructor Summary
DelayProcessorSupport(Processor processor)
           
DelayProcessorSupport(Processor processor, ScheduledExecutorService executorService)
           
 
Method Summary
protected abstract  long calculateDelay(Exchange exchange)
           
protected  long currentSystemTime()
           
protected  void delay(long delay, Exchange exchange)
          Delays the given time before continuing.
protected  void doStart()
           
protected  void handleSleepInterruptedException(InterruptedException e, Exchange exchange)
          Called when a sleep is interrupted; allows derived classes to handle this case differently
 boolean isAsyncDelayed()
           
 boolean isCallerRunsWhenRejected()
           
 boolean process(Exchange exchange, AsyncCallback callback)
          Processes the message exchange.
 void setAsyncDelayed(boolean asyncDelayed)
           
 void setCallerRunsWhenRejected(boolean callerRunsWhenRejected)
           
 
Methods inherited from class org.apache.camel.processor.DelegateAsyncProcessor
doStop, getProcessor, hasNext, next, process, processNext, setProcessor, setProcessor, toString
 
Methods inherited from class org.apache.camel.impl.ServiceSupport
addChildService, doResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isSuspended, isSuspending, removeChildService, resume, shutdown, start, start, stop, suspend
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

log

protected final transient org.slf4j.Logger log
Constructor Detail

DelayProcessorSupport

public DelayProcessorSupport(Processor processor)

DelayProcessorSupport

public DelayProcessorSupport(Processor processor,
                             ScheduledExecutorService executorService)
Method Detail

process

public boolean process(Exchange exchange,
                       AsyncCallback callback)
Description copied from interface: AsyncProcessor
Processes the message exchange. Similar to Processor.process(org.apache.camel.Exchange), but the caller supports having the exchange asynchronously processed.

If there was a failure processing then the caused Exception would be set on the Exchange.

Specified by:
process in interface AsyncProcessor
Overrides:
process in class DelegateAsyncProcessor
Parameters:
exchange - the message exchange
callback - the AsyncCallback will be invoked when the processing of the exchange is completed. If the exchange is completed synchronously, then the callback is also invoked synchronously. The callback should therefore be careful of starting recursive loop.
Returns:
(doneSync) true to continue execute synchronously, false to continue being executed asynchronously
See Also:
AsyncProcessorHelper.process(AsyncProcessor, Exchange, AsyncCallback)

isAsyncDelayed

public boolean isAsyncDelayed()

setAsyncDelayed

public void setAsyncDelayed(boolean asyncDelayed)

isCallerRunsWhenRejected

public boolean isCallerRunsWhenRejected()

setCallerRunsWhenRejected

public void setCallerRunsWhenRejected(boolean callerRunsWhenRejected)

calculateDelay

protected abstract long calculateDelay(Exchange exchange)

delay

protected void delay(long delay,
                     Exchange exchange)
              throws InterruptedException
Delays the given time before continuing.

This implementation will block while waiting

Parameters:
delay - the delay time in millis
exchange - the exchange being processed
Throws:
InterruptedException

handleSleepInterruptedException

protected void handleSleepInterruptedException(InterruptedException e,
                                               Exchange exchange)
                                        throws InterruptedException
Called when a sleep is interrupted; allows derived classes to handle this case differently

Throws:
InterruptedException

currentSystemTime

protected long currentSystemTime()

doStart

protected void doStart()
                throws Exception
Overrides:
doStart in class DelegateAsyncProcessor
Throws:
Exception


Apache CAMEL