com.tibco.rta.runtime.model.rule
Interface ActionHandlerContext

All Known Implementing Classes:
AbstractActionHandlerContext

public interface ActionHandlerContext

One time initialization of Action functions. For example, an email action may need to establish a connection to the email server only once or a webservice invocation may need a 1 time initialization of the service framework The engine will initialize these during its startup sequence.


Method Summary
 Action getAction(Rule rule, ActionDef actionDef)
          Implementors are free to call action.
 java.lang.String getName()
          Get name
 void init(java.util.Properties configuration)
          Called by the engine during starup
 void stop()
          Called by the engine during shutdown.
 

Method Detail

init

void init(java.util.Properties configuration)
Called by the engine during starup

Parameters:
configuration -

stop

void stop()
Called by the engine during shutdown.


getName

java.lang.String getName()
Get name

Returns:

getAction

Action getAction(Rule rule,
                 ActionDef actionDef)
Implementors are free to call action.

Returns:


Copyright © 2000-2014 TIBCO Inc. All Rights Reserved.