org.apache.camel.impl
Class ProcessorEndpoint
java.lang.Object
org.apache.camel.impl.DefaultEndpoint<E>
org.apache.camel.impl.ScheduledPollEndpoint<E>
org.apache.camel.impl.DefaultPollingEndpoint<Exchange>
org.apache.camel.impl.ProcessorEndpoint
- All Implemented Interfaces:
- CamelContextAware, Endpoint<Exchange>
public class ProcessorEndpoint
- extends DefaultPollingEndpoint<Exchange>
An endpoint which allows exchanges to be sent into it which just invokes a
given Processor
. This component does not support the use of
consumers.
- Version:
- $Revision: 41278 $
Methods inherited from class org.apache.camel.impl.DefaultEndpoint |
convertTo, createExchange, createExchange, createExchange, createExecutorService, equals, getCamelContext, getComponent, getEndpointUri, getExchangePattern, getExchangeType, getExecutorService, hashCode, setCamelContext, setExchangePattern, setExecutorService, toString |
ProcessorEndpoint
public ProcessorEndpoint(String endpointUri,
CamelContext context,
Processor processor)
ProcessorEndpoint
public ProcessorEndpoint(String endpointUri,
Component component,
Processor processor)
ProcessorEndpoint
public ProcessorEndpoint(String endpointUri,
Processor processor)
createProducer
public Producer<Exchange> createProducer()
throws Exception
- Description copied from interface:
Endpoint
- Creates a new producer which is used send messages into the endpoint
- Returns:
- a newly created producer
- Throws:
Exception
createPollingConsumer
public PollingConsumer<Exchange> createPollingConsumer()
throws Exception
- Description copied from interface:
Endpoint
- Creates a new Polling
Consumer so that the caller can poll message exchanges from the
consumer using
PollingConsumer.receive()
,
PollingConsumer.receiveNoWait()
or
PollingConsumer.receive(long)
whenever it is ready to do so
rather than using the Event
Based Consumer returned by Endpoint.createConsumer(Processor)
- Specified by:
createPollingConsumer
in interface Endpoint<Exchange>
- Overrides:
createPollingConsumer
in class DefaultEndpoint<Exchange>
- Returns:
- a newly created pull consumer
- Throws:
Exception
- if the pull consumer could not be created
getProcessor
public Processor getProcessor()
onExchange
protected void onExchange(Exchange exchange)
throws Exception
- Throws:
Exception
isSingleton
public boolean isSingleton()
- Description copied from interface:
Endpoint
- Returns if the endpoint should be a CamelContext singleton. If the
endpoint is a Singleton, then a single Endpoint instance will be shared
by all routes with the same URI. Because the endpoint is shared, it
should be treated as an immutable.
Copyright © 2008 IONA Open Source Community. All Rights Reserved.