Package org.jeyzer.publish
Interface JzrActionHandler
-
public interface JzrActionHandler
Each JzrAction handler object :
- is a reference to a current action declared with Jeyzer.
- handles only one action at a time.
- must be unique per thread.
Handlers are obtained from the Jeyzer Publisher instance and must be called on startAction to register the action with Jeyzer.
Once the action is completed, the closeAction method must be called to release the action context.
Thread safe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
closeAction()
Close the actionvoid
setContextParameter(java.lang.String param, java.lang.String value)
Set the action context parametervoid
startAction(JzrActionContext context)
Declare a starting action with Jeyzer
-
-
-
Method Detail
-
startAction
void startAction(JzrActionContext context)
Declare a starting action with Jeyzer- Parameters:
context
- the associated action context.
-
closeAction
void closeAction()
Close the action
-
setContextParameter
void setContextParameter(java.lang.String param, java.lang.String value)
Set the action context parameter- Parameters:
param
- the context parametervalue
- the context value
-
-