Search in sources :

Example 1 with SendProcessor

use of org.apache.camel.processor.SendProcessor in project camel by apache.

the class EndpointTransformerDefinition method doCreateTransformer.

@Override
protected Transformer doCreateTransformer(CamelContext context) throws Exception {
    Endpoint endpoint = uri != null ? context.getEndpoint(uri) : context.getRegistry().lookupByNameAndType(ref, Endpoint.class);
    SendProcessor processor = new SendProcessor(endpoint, ExchangePattern.InOut);
    return new ProcessorTransformer(context).setProcessor(processor).setModel(getScheme()).setFrom(getFromType()).setTo(getToType());
}
Also used : Endpoint(org.apache.camel.Endpoint) SendProcessor(org.apache.camel.processor.SendProcessor) ProcessorTransformer(org.apache.camel.impl.transformer.ProcessorTransformer)

Example 2 with SendProcessor

use of org.apache.camel.processor.SendProcessor in project camel by apache.

the class EndpointValidatorDefinition method doCreateValidator.

@Override
protected Validator doCreateValidator(CamelContext context) throws Exception {
    Endpoint endpoint = uri != null ? context.getEndpoint(uri) : context.getRegistry().lookupByNameAndType(ref, Endpoint.class);
    SendProcessor processor = new SendProcessor(endpoint, ExchangePattern.InOut);
    return new ProcessorValidator(context).setProcessor(processor).setType(getType());
}
Also used : ValidatorEndpoint(org.apache.camel.component.validator.ValidatorEndpoint) Endpoint(org.apache.camel.Endpoint) ProcessorValidator(org.apache.camel.impl.validator.ProcessorValidator) SendProcessor(org.apache.camel.processor.SendProcessor)

Example 3 with SendProcessor

use of org.apache.camel.processor.SendProcessor in project camel by apache.

the class AggregateProcessorTimeoutCompletionRestartTest method testAggregateProcessorTimeoutExpressionRestart.

public void testAggregateProcessorTimeoutExpressionRestart() throws Exception {
    MockEndpoint mock = getMockEndpoint("mock:result");
    mock.expectedBodiesReceived("A+B");
    mock.expectedPropertyReceived(Exchange.AGGREGATED_COMPLETED_BY, "timeout");
    Processor done = new SendProcessor(context.getEndpoint("mock:result"));
    Expression corr = header("id");
    AggregationStrategy as = new BodyInAggregatingStrategy();
    AggregateProcessor ap = new AggregateProcessor(context, done, corr, as, executorService, true);
    // start with a high timeout so no completes before we stop
    ap.setCompletionTimeoutExpression(header("myTimeout"));
    ap.start();
    Exchange e1 = new DefaultExchange(context);
    e1.getIn().setBody("A");
    e1.getIn().setHeader("id", 123);
    e1.getIn().setHeader("myTimeout", 2000);
    Exchange e2 = new DefaultExchange(context);
    e2.getIn().setBody("B");
    e2.getIn().setHeader("id", 123);
    e2.getIn().setHeader("myTimeout", 2000);
    ap.process(e1);
    ap.process(e2);
    // shutdown before the 2 sec timeout occurs
    // however we use stop instead of shutdown as shutdown will clear the in memory aggregation repository,
    ap.stop();
    // should be no completed
    assertEquals(0, mock.getReceivedCounter());
    // start aggregator again
    ap.start();
    // the aggregator should restore the timeout condition and trigger timeout
    assertMockEndpointsSatisfied();
    assertEquals(1, mock.getReceivedCounter());
    ap.shutdown();
}
Also used : DefaultExchange(org.apache.camel.impl.DefaultExchange) Exchange(org.apache.camel.Exchange) DefaultExchange(org.apache.camel.impl.DefaultExchange) Processor(org.apache.camel.Processor) SendProcessor(org.apache.camel.processor.SendProcessor) AggregateProcessor(org.apache.camel.processor.aggregate.AggregateProcessor) MockEndpoint(org.apache.camel.component.mock.MockEndpoint) Expression(org.apache.camel.Expression) BodyInAggregatingStrategy(org.apache.camel.processor.BodyInAggregatingStrategy) SendProcessor(org.apache.camel.processor.SendProcessor) AggregationStrategy(org.apache.camel.processor.aggregate.AggregationStrategy) AggregateProcessor(org.apache.camel.processor.aggregate.AggregateProcessor)

Example 4 with SendProcessor

use of org.apache.camel.processor.SendProcessor in project camel by apache.

the class AggregateProcessorTimeoutCompletionRestartTest method testAggregateProcessorTimeoutRestart.

public void testAggregateProcessorTimeoutRestart() throws Exception {
    MockEndpoint mock = getMockEndpoint("mock:result");
    mock.expectedBodiesReceived("A+B");
    mock.expectedPropertyReceived(Exchange.AGGREGATED_COMPLETED_BY, "timeout");
    Processor done = new SendProcessor(context.getEndpoint("mock:result"));
    Expression corr = header("id");
    AggregationStrategy as = new BodyInAggregatingStrategy();
    AggregateProcessor ap = new AggregateProcessor(context, done, corr, as, executorService, true);
    // start with a high timeout so no completes before we stop
    ap.setCompletionTimeout(2000);
    ap.start();
    Exchange e1 = new DefaultExchange(context);
    e1.getIn().setBody("A");
    e1.getIn().setHeader("id", 123);
    Exchange e2 = new DefaultExchange(context);
    e2.getIn().setBody("B");
    e2.getIn().setHeader("id", 123);
    ap.process(e1);
    ap.process(e2);
    // shutdown before the 2 sec timeout occurs
    // however we use stop instead of shutdown as shutdown will clear the in memory aggregation repository,
    ap.stop();
    // should be no completed
    assertEquals(0, mock.getReceivedCounter());
    // start aggregator again
    ap.start();
    // the aggregator should restore the timeout condition and trigger timeout
    assertMockEndpointsSatisfied();
    assertEquals(1, mock.getReceivedCounter());
    ap.shutdown();
}
Also used : DefaultExchange(org.apache.camel.impl.DefaultExchange) Exchange(org.apache.camel.Exchange) DefaultExchange(org.apache.camel.impl.DefaultExchange) Processor(org.apache.camel.Processor) SendProcessor(org.apache.camel.processor.SendProcessor) AggregateProcessor(org.apache.camel.processor.aggregate.AggregateProcessor) MockEndpoint(org.apache.camel.component.mock.MockEndpoint) Expression(org.apache.camel.Expression) BodyInAggregatingStrategy(org.apache.camel.processor.BodyInAggregatingStrategy) SendProcessor(org.apache.camel.processor.SendProcessor) AggregationStrategy(org.apache.camel.processor.aggregate.AggregationStrategy) AggregateProcessor(org.apache.camel.processor.aggregate.AggregateProcessor)

Example 5 with SendProcessor

use of org.apache.camel.processor.SendProcessor in project camel by apache.

the class AggregateProcessorTest method testAggregateForceCompletion.

public void testAggregateForceCompletion() throws Exception {
    // camel context must be started
    context.start();
    MockEndpoint mock = getMockEndpoint("mock:result");
    mock.expectedBodiesReceivedInAnyOrder("B+END", "A+END");
    mock.expectedPropertyReceived(Exchange.AGGREGATED_COMPLETED_BY, "force");
    Processor done = new SendProcessor(context.getEndpoint("mock:result"));
    Expression corr = header("id");
    AggregationStrategy as = new BodyInAggregatingStrategy();
    AggregateProcessor ap = new AggregateProcessor(context, done, corr, as, executorService, true);
    ap.setCompletionSize(10);
    ap.start();
    Exchange e1 = new DefaultExchange(context);
    e1.getIn().setBody("A");
    e1.getIn().setHeader("id", 123);
    Exchange e2 = new DefaultExchange(context);
    e2.getIn().setBody("B");
    e2.getIn().setHeader("id", 456);
    Exchange e3 = new DefaultExchange(context);
    e3.getIn().setBody("END");
    e3.getIn().setHeader("id", 123);
    Exchange e4 = new DefaultExchange(context);
    e4.getIn().setBody("END");
    e4.getIn().setHeader("id", 456);
    ap.process(e1);
    ap.process(e2);
    ap.process(e3);
    ap.process(e4);
    assertEquals("should not have completed yet", 0, mock.getExchanges().size());
    ap.forceCompletionOfAllGroups();
    assertMockEndpointsSatisfied();
    ap.stop();
}
Also used : DefaultExchange(org.apache.camel.impl.DefaultExchange) Exchange(org.apache.camel.Exchange) DefaultExchange(org.apache.camel.impl.DefaultExchange) SendProcessor(org.apache.camel.processor.SendProcessor) Processor(org.apache.camel.Processor) AggregateProcessor(org.apache.camel.processor.aggregate.AggregateProcessor) MockEndpoint(org.apache.camel.component.mock.MockEndpoint) Expression(org.apache.camel.Expression) BodyInAggregatingStrategy(org.apache.camel.processor.BodyInAggregatingStrategy) SendProcessor(org.apache.camel.processor.SendProcessor) AggregationStrategy(org.apache.camel.processor.aggregate.AggregationStrategy) AggregateProcessor(org.apache.camel.processor.aggregate.AggregateProcessor)

Aggregations

SendProcessor (org.apache.camel.processor.SendProcessor)27 Processor (org.apache.camel.Processor)17 AggregateProcessor (org.apache.camel.processor.aggregate.AggregateProcessor)15 Exchange (org.apache.camel.Exchange)14 Expression (org.apache.camel.Expression)14 MockEndpoint (org.apache.camel.component.mock.MockEndpoint)14 DefaultExchange (org.apache.camel.impl.DefaultExchange)14 BodyInAggregatingStrategy (org.apache.camel.processor.BodyInAggregatingStrategy)14 AggregationStrategy (org.apache.camel.processor.aggregate.AggregationStrategy)14 Endpoint (org.apache.camel.Endpoint)7 Predicate (org.apache.camel.Predicate)5 Channel (org.apache.camel.Channel)4 Route (org.apache.camel.Route)4 EventDrivenConsumerRoute (org.apache.camel.impl.EventDrivenConsumerRoute)4 DeadLetterChannel (org.apache.camel.processor.DeadLetterChannel)4 ProcessorTransformer (org.apache.camel.impl.transformer.ProcessorTransformer)2 Field (java.lang.reflect.Field)1 Iterator (java.util.Iterator)1 ExecutorService (java.util.concurrent.ExecutorService)1 CamelContext (org.apache.camel.CamelContext)1