|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.camel.support.ServiceSupport
org.apache.camel.processor.BatchProcessor
@Deprecated public class BatchProcessor
A base class for any kind of Processor which implements some kind of batch processing.
| Field Summary | |
|---|---|
static int |
DEFAULT_BATCH_SIZE
Deprecated. |
static long |
DEFAULT_BATCH_TIMEOUT
Deprecated. |
| Fields inherited from class org.apache.camel.support.ServiceSupport |
|---|
shutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending |
| Constructor Summary | |
|---|---|
BatchProcessor(CamelContext camelContext,
Processor processor,
Collection<Exchange> collection,
Expression expression)
Deprecated. |
|
| Method Summary | |
|---|---|
protected void |
doStart()
Deprecated. Implementations override this method to support customized start/stop. |
protected void |
doStop()
Deprecated. Implementations override this method to support customized start/stop. |
int |
getBatchSize()
Deprecated. |
long |
getBatchTimeout()
Deprecated. |
Predicate |
getCompletionPredicate()
Deprecated. |
ExceptionHandler |
getExceptionHandler()
Deprecated. |
int |
getOutBatchSize()
Deprecated. |
Processor |
getProcessor()
Deprecated. |
boolean |
hasNext()
Deprecated. Are there more outputs? |
boolean |
isBatchConsumer()
Deprecated. |
boolean |
isGroupExchanges()
Deprecated. |
boolean |
isIgnoreInvalidExchanges()
Deprecated. |
List<Processor> |
next()
Deprecated. Next group of outputs |
void |
process(Exchange exchange)
Deprecated. Processes the message exchange |
boolean |
process(Exchange exchange,
AsyncCallback callback)
Deprecated. Enqueues an exchange for later batch processing. |
protected void |
processExchange(Exchange exchange)
Deprecated. Strategy Method to process an exchange in the batch. |
void |
setBatchConsumer(boolean batchConsumer)
Deprecated. |
void |
setBatchSize(int batchSize)
Deprecated. Sets the in batch size. |
void |
setBatchTimeout(long batchTimeout)
Deprecated. |
void |
setCompletionPredicate(Predicate completionPredicate)
Deprecated. |
void |
setExceptionHandler(ExceptionHandler exceptionHandler)
Deprecated. |
void |
setGroupExchanges(boolean groupExchanges)
Deprecated. |
void |
setIgnoreInvalidExchanges(boolean ignoreInvalidExchanges)
Deprecated. |
void |
setOutBatchSize(int outBatchSize)
Deprecated. Sets the out batch size. |
String |
toString()
Deprecated. |
| Methods inherited from class org.apache.camel.support.ServiceSupport |
|---|
doResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, resume, shutdown, start, stop, suspend |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final long DEFAULT_BATCH_TIMEOUT
public static final int DEFAULT_BATCH_SIZE
| Constructor Detail |
|---|
public BatchProcessor(CamelContext camelContext,
Processor processor,
Collection<Exchange> collection,
Expression expression)
| Method Detail |
|---|
public String toString()
toString in class Objectpublic ExceptionHandler getExceptionHandler()
public void setExceptionHandler(ExceptionHandler exceptionHandler)
public int getBatchSize()
public void setBatchSize(int batchSize)
DEFAULT_BATCH_SIZE.
batchSize - the sizepublic int getOutBatchSize()
public void setOutBatchSize(int outBatchSize)
outBatchSize - the sizepublic long getBatchTimeout()
public void setBatchTimeout(long batchTimeout)
public boolean isGroupExchanges()
public void setGroupExchanges(boolean groupExchanges)
public boolean isBatchConsumer()
public void setBatchConsumer(boolean batchConsumer)
public boolean isIgnoreInvalidExchanges()
public void setIgnoreInvalidExchanges(boolean ignoreInvalidExchanges)
public Predicate getCompletionPredicate()
public void setCompletionPredicate(Predicate completionPredicate)
public Processor getProcessor()
public List<Processor> next()
Navigate
next in interface Navigate<Processor>public boolean hasNext()
Navigate
hasNext in interface Navigate<Processor>
protected void processExchange(Exchange exchange)
throws Exception
Exception
protected void doStart()
throws Exception
ServiceSupportServiceSupport.doStop() for more details.
doStart in class ServiceSupportExceptionServiceSupport.doStop()
protected void doStop()
throws Exception
ServiceSupportServiceSupport.doStop() method when
the service is being stopped. This method will also be invoked
if the service is still in uninitialized state (eg has not
been started). The method is always called to allow the service
to do custom logic when the service is being stopped, such as when
CamelContext is shutting down.
doStop in class ServiceSupportExceptionServiceSupport.doStart()
public void process(Exchange exchange)
throws Exception
Processor
process in interface Processorexchange - the message exchange
Exception - if an internal processing error has occurred.
public boolean process(Exchange exchange,
AsyncCallback callback)
process in interface AsyncProcessorexchange - the message exchangecallback - 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.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||