Package org.mule.construct

Source Code of org.mule.construct.ThreadPerProcessorProcessingStrategy

/*
* $Id: ThreadPerProcessorProcessingStrategy.java 22053 2011-05-31 20:22:35Z dfeist $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/

package org.mule.construct;

import org.mule.api.construct.Pipeline;
import org.mule.api.processor.MessageProcessor;
import org.mule.api.processor.MessageProcessorBuilder;
import org.mule.api.processor.MessageProcessorChainBuilder;

import javax.resource.spi.work.WorkManager;

/**
* This strategy uses a {@link WorkManager} to schedule the processing of each message processors in a new
* worker thread.
*/
public class ThreadPerProcessorProcessingStrategy extends AsynchronousProcessingStrategy
{

    @Override
    public void configureProcessors(Pipeline pipeline, MessageProcessorChainBuilder builder)
    {
        for (int i = 0; i < pipeline.getMessageProcessors().size(); i++)
        {
            MessageProcessor processor = pipeline.getMessageProcessors().get(i);

            builder.chain(createAsyncMessageProcessor(pipeline));

            if (processor instanceof MessageProcessor)
            {
                builder.chain((MessageProcessor) processor);
            }
            else if (processor instanceof MessageProcessorBuilder)
            {
                builder.chain((MessageProcessorBuilder) processor);
            }
            else
            {
                throw new IllegalArgumentException(
                    "MessageProcessorBuilder should only have MessageProcessor's or MessageProcessorBuilder's configured");
            }
        }
    }
}
TOP

Related Classes of org.mule.construct.ThreadPerProcessorProcessingStrategy

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.