|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SystemException | |
javax.activity | |
javax.activity.coordination | |
javax.activity.propertygroup | |
org.objectweb.jass.as |
Uses of SystemException in javax.activity |
Methods in javax.activity that throw SystemException | |
void |
PersistentActivityCoordinator.setPersistent()
|
ActivityToken |
ActivityManager.suspend()
|
void |
ActivityManager.resume(ActivityToken activity)
|
ActivityToken |
ActivityManager.suspendGroup()
|
void |
ActivityManager.resumeGroup(ActivityToken activity)
|
ActivityToken |
ActivityManager.suspendAll()
|
void |
ActivityManager.resumeAll(ActivityToken activity)
|
GlobalId |
ActivityManager.hibernate()
|
void |
ActivityManager.reactivate(GlobalId globalId)
|
void |
ActivityCoordinator.addAction(Action action,
java.lang.String signalSetName,
int priority)
|
void |
ActivityCoordinator.addGlobalAction(Action action,
int priority)
|
void |
ActivityCoordinator.removeAction(Action action,
java.lang.String signalSetName)
|
void |
ActivityCoordinator.removeGlobalAction(Action action)
|
int |
ActivityCoordinator.getNumberRegisteredActions(java.lang.String signalSetName)
|
void |
ActivityCoordinator.setCompletionSignalSetName(java.lang.String signalSetName)
|
java.lang.String |
ActivityCoordinator.getCompletionSignalSetName()
|
ActivityCoordinator |
ActivityCoordinator.getParent()
|
GlobalId |
ActivityCoordinator.getGlobalId()
|
int |
ActivityCoordinator.getStatus()
|
int |
ActivityCoordinator.getParentStatus()
|
java.lang.String |
ActivityCoordinator.getName()
|
boolean |
ActivityCoordinator.isSameActivity(ActivityCoordinator coord)
|
Action[] |
ActivityCoordinator.getActions(java.lang.String signalSetName)
|
Outcome |
ActivityCoordinator.completeActivity(int completionStatus)
|
Outcome |
ActivityCoordinator.heuristicComplete(int completionStatus)
|
Outcome |
ActivityCoordinator.processSignalSet(java.lang.String signalSetName,
int completionStatus)
|
void |
UserActivity.begin(int timeout)
|
Outcome |
UserActivity.complete()
|
Outcome |
UserActivity.completeWithStatus(int completionStatus)
|
void |
UserActivity.setCompletionStatus(int completionStatus)
|
int |
UserActivity.getCompletionStatus()
|
int |
UserActivity.getStatus()
|
java.lang.String |
UserActivity.getName()
|
void |
UserActivity.setTimeout(int timeout)
|
int |
UserActivity.getTimeout()
|
GlobalId |
UserActivity.getGlobalId()
|
Outcome |
UserActivity.broadcast(java.lang.String signalSetName)
|
ActivityCoordinator |
UserActivity.getCoordinator()
|
ActivityCoordinator |
UserActivity.getParentCoordinator()
|
PropertyGroup |
UserActivity.getPropertyGroup(java.lang.String name)
|
void |
UserActivity.registerService(ServiceManager service)
|
ServiceManager |
UserActivity.getService()
|
ActivityCoordinator |
UserActivity.recreate(GlobalId activity,
GlobalId parent,
boolean resume)
|
GlobalId[] |
UserActivity.recover()
|
void |
UserActivity.forget(GlobalId globalId)
|
Uses of SystemException in javax.activity.coordination |
Methods in javax.activity.coordination that throw SystemException | |
SignalSet[] |
ServiceManager.recoverSignalSets(GlobalId globalId)
|
RecoverableAction[] |
ServiceManager.recoverActions(GlobalId globalId,
java.lang.String signalSetName)
|
Uses of SystemException in javax.activity.propertygroup |
Methods in javax.activity.propertygroup that throw SystemException | |
PropertyGroup |
PropertyGroupManager.recoverPropertyGroup(PropertyGroup parent,
GlobalId globalId)
|
Uses of SystemException in org.objectweb.jass.as |
Methods in org.objectweb.jass.as that throw SystemException | |
void |
ActivityImpl.addAction(Action action,
java.lang.String signalSetName,
int priority)
Establishes an interest relationship between the specified Action and SignalSet for the Activity represented by the target ActivityCoordinator. |
void |
ActivityImpl.addGlobalAction(Action action,
int priority)
Establishes an interest relationship between the specified Action and all SignalSets used by the Activity represented by the target ActivityCoordinator. |
void |
ActivityImpl.removeAction(Action action,
java.lang.String signalSetName)
Removes the interest relationship between the specified Action and SignalSet for the Activity represented by the target ActivityCoordinator. |
void |
ActivityImpl.removeGlobalAction(Action action)
Removes the interest relationship between the specified Action and all SignalSets for the Activity represented by the target ActivityCoordinator. |
Action[] |
ActivityImpl.getActions(java.lang.String signalSetName)
Returns all the Actions that have been registered with an interest in the specified signalSetName. |
int |
ActivityImpl.getNumberRegisteredActions(java.lang.String signalSetName)
Returns the number of Actions, including global Actions, registered with the target ActivityCoordinator with an interest in the specified SignalSet. |
void |
ActivityImpl.setCompletionSignalSetName(java.lang.String signalSetName)
Sets the name of the SignalSet that should be used for the distribution of completion signals when the current Activity completes. |
java.lang.String |
ActivityImpl.getCompletionSignalSetName()
Returns the name of the SignalSet, if any, that will be used for the distribution of completion signals when the current Activity completes. |
ActivityCoordinator |
ActivityImpl.getParent()
Returns the parent ActivityCoordinator or null if the target ActivityCoordinator represents a top-level Activity. |
GlobalId |
ActivityImpl.getGlobalId()
Returns the GlobalId of the Activity represented by the target ActivityCoordinator. |
int |
ActivityImpl.getStatus()
Returns the Status of the Activity represented by the target ActivityCoordinator. |
int |
ActivityImpl.getParentStatus()
Returns the Status of the Activity represented by the target ActivityCoordinator's parent. |
java.lang.String |
ActivityImpl.getName()
Returns a printable string describing the Activity represented by the target ActivityCoordinator. |
boolean |
ActivityImpl.isSameActivity(ActivityCoordinator coord)
Returns true if the specified coord represents the same Activity as the target ActivityCoordinator. |
Outcome |
ActivityImpl.completeActivity(int completionStatus)
Causes the Activity associated with the target ActivityCoordinator to complete with the specified CompletionStatus. |
Outcome |
ActivityImpl.heuristicComplete(int completionStatus)
TODO NOT YET IMPLEMENTED |
Outcome |
ActivityImpl.processSignalSet(java.lang.String signalSetName,
int completionStatus)
Causes the SignalSet specified by signalSetName to start producing signals for all registered Actions at times other than during completion. |
void |
ActivityService.begin(int timeout)
Create a new Activity and associate it with the current thread. |
Outcome |
ActivityService.completeWithStatus(int completionStatus)
Causes the active Activity context to complete with the specified CompletionStatus. |
Outcome |
ActivityService.complete()
Causes the active Activity context to be completed with its current CompletionStatus. |
void |
ActivityService.setCompletionStatus(int completionStatus)
OK Sets the CompletionStatus of the active Activity. |
int |
ActivityService.getCompletionStatus()
Returns the current value of the CompletionStatus of the active Activity. |
int |
ActivityService.getStatus()
Returns the current value of the Status of the active Activity. |
java.lang.String |
ActivityService.getName()
Returns a printable string describing the active Activity. |
void |
ActivityService.setTimeout(int timeout)
Sets the default timeout, in seconds, after which an Activity may be automatically completed by the Activity service. |
int |
ActivityService.getTimeout()
Returns the default timeout value. |
GlobalId |
ActivityService.getGlobalId()
Returns the GlobalId of the active Activity. |
Outcome |
ActivityService.broadcast(java.lang.String signalSetName)
Causes the SignalSet specified by signalSetName to start producing signals for all registered Actions. |
ActivityCoordinator |
ActivityService.getCoordinator()
Returns the ActivityCoordinator of the active Activity, or null if there is no Activity associated with the calling thread. |
ActivityCoordinator |
ActivityService.getParentCoordinator()
Returns the ActivityCoordinator of the parent of the active Activity, or null if the active Activity is a top-level Activity. |
PropertyGroup |
ActivityService.getPropertyGroup(java.lang.String name)
NOT YET IMPLEMENTED |
void |
ActivityService.registerService(ServiceManager service)
Registers a ServiceManager for the type of high-level service (HLS) whose activities are to be demarcated through the target UserActivity instance. |
ServiceManager |
ActivityService.getService()
Returns the registered ServiceManager for this UserActivity instance. |
ActivityCoordinator |
ActivityService.recreate(GlobalId activity,
GlobalId parent,
boolean resume)
NOT YET IMPLEMENTED |
GlobalId[] |
ActivityService.recover()
NOT YET IMPLEMENTED |
void |
ActivityService.forget(GlobalId globalId)
NOT YET IMPLEMENTED |
ActivityToken |
ActivityService.suspend()
Suspends the association of the current Activity from the calling thread of execution along with any child Activities of the same ContextGroup nested within that Activity. |
void |
ActivityService.resume(ActivityToken activityToken)
Resumes the association of the Activity, and any nested Activities and transactions, represented by the ActivityToken with the calling thread of execution. |
ActivityToken |
ActivityService.suspendGroup()
Not yet implemented. |
void |
ActivityService.resumeGroup(ActivityToken activityToken)
Not yet implemented. |
ActivityToken |
ActivityService.suspendAll()
Not yet implemented. |
void |
ActivityService.resumeAll(ActivityToken activityToken)
Not yet implemented. |
GlobalId |
ActivityService.hibernate()
Not yet implemented. |
void |
ActivityService.reactivate(GlobalId globalId)
Not yet implemented. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |