org.mule.tck.functional
Class InvocationCountMessageProcessor

java.lang.Object
  extended by org.mule.tck.functional.InvocationCountMessageProcessor
All Implemented Interfaces:
Initialisable, MessageProcessor

public class InvocationCountMessageProcessor
extends Object
implements MessageProcessor, Initialisable

Test message processor to keep count of number of invocations.


Field Summary
 
Fields inherited from interface org.mule.api.lifecycle.Initialisable
PHASE_NAME
 
Constructor Summary
InvocationCountMessageProcessor()
           
 
Method Summary
static int getNumberOfInvocationsFor(String componentName)
           
 void initialise()
          Method used to perform any initialisation work.
 MuleEvent process(MuleEvent event)
          Invokes the MessageProcessor.
 void setName(String name)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InvocationCountMessageProcessor

public InvocationCountMessageProcessor()
Method Detail

process

public MuleEvent process(MuleEvent event)
                  throws MuleException
Description copied from interface: MessageProcessor
Invokes the MessageProcessor.

Specified by:
process in interface MessageProcessor
Parameters:
event - MuleEvent to be processed
Returns:
optional response MuleEvent
Throws:
MuleException

setName

public void setName(String name)

initialise

public void initialise()
                throws InitialisationException
Description copied from interface: Initialisable
Method used to perform any initialisation work. If a fatal error occurs during initialisation an InitialisationException should be thrown, causing the Mule instance to shutdown. If the error is recoverable, say by retrying to connect, a RecoverableException should be thrown. There is no guarantee that by throwing a Recoverable exception that the Mule instance will not shut down.

Specified by:
initialise in interface Initialisable
Throws:
InitialisationException - if a fatal error occurs causing the Mule instance to shutdown
RecoverableException - if an error occurs that can be recovered from

getNumberOfInvocationsFor

public static int getNumberOfInvocationsFor(String componentName)
Parameters:
componentName - name of the message processor in the configuration
Returns:
the number of invocations for the message processor with name componentName


Copyright © 2003-2014 MuleSoft, Inc.. All Rights Reserved.