Module org.bzdev.drama
Package org.bzdev.drama.generic
Class GenericTaskObject<S extends GenericSimulation<S,A,C,D,DM,F,G>,A extends GenericActor<S,A,C,D,DM,F,G>,C extends GenericCondition<S,A,C,D,DM,F,G>,D extends GenericDomain<S,A,C,D,DM,F,G>,DM extends GenericDomainMember<S,A,C,D,DM,F,G>,F extends GenericFactory<S,A,C,D,DM,F,G>,G extends GenericGroup<S,A,C,D,DM,F,G>>
java.lang.Object
org.bzdev.devqsim.SimObject
org.bzdev.drama.generic.GenericSimObject<S,A,C,D,DM,F,G>
org.bzdev.drama.generic.GenericTaskObject<S,A,C,D,DM,F,G>
- All Implemented Interfaces:
NamedObjectOps
- Direct Known Subclasses:
AbstractTaskObject,GenericCondition,GenericDomain,MessageRecipient
public abstract class GenericTaskObject<S extends GenericSimulation<S,A,C,D,DM,F,G>,A extends GenericActor<S,A,C,D,DM,F,G>,C extends GenericCondition<S,A,C,D,DM,F,G>,D extends GenericDomain<S,A,C,D,DM,F,G>,DM extends GenericDomainMember<S,A,C,D,DM,F,G>,F extends GenericFactory<S,A,C,D,DM,F,G>,G extends GenericGroup<S,A,C,D,DM,F,G>>
extends GenericSimObject<S,A,C,D,DM,F,G>
Superclass for those classes that need standard methods for
scheduling a specific task or method call.
Subclasses can provide implementations of the methods defaultCall()
and defaultTask() to provide default code to either call or run in
a task thread. Methods allow these to be scheduled and canceled.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedGenericTaskObject(S sim, String name, boolean intern) Constructor for task objects that are interned in the simulation tables. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidCancel a scheduled call to the defaultCall method.protected voidCancel the default task.booleanDetermine if this named object can be deleted.protected Objectclone()Creates and returns a copy of this object.protected voidRespond to a scheduled event.protected voidThe method to call when the default task is scheduled.final booleandelete()Delete an object.final booleanDetermine if an object is being deleted.final StringgetName()Get an object's name.protected SimulationGet the object namer for a named object.final booleanDetermine if an object has been deleted.booleanDetermine if an object is interned in a object namer's tables.protected voidonDelete()Complete the actions necessary to delete a named object.protected voidscheduleDefaultCall(long delay) Schedule an event to trigger a call to defaultCall.protected voidSchedule the default task for immediate execution.protected voidscheduleDefaultTask(long delay) Schedule the default task for future execution.Methods inherited from class org.bzdev.drama.generic.GenericSimObject
getSimulation, printConfiguration, printStateMethods inherited from class org.bzdev.devqsim.SimObject
addSimulationListener, addTraceSet, bindCallable, bindCallable, bindCallable, bindCallable, bindRunnable, bindRunnable, bindRunnable, bindRunnable, callableObject, callableScript, callScriptFunction, callScriptMethod, clearTraceSets, evalScript, getEventListenerList, getScriptObject, getTraceSets, printConfiguration, printConfiguration, printConfiguration, printConfiguration, printConfiguration, printConfiguration, printState, printState, printState, printState, printState, printState, putScriptObject, removeSimulationListener, removeTraceSet, runnableObject, runnableScript, scheduleCall, scheduleCall, scheduleCall, scheduleCall, scheduleCallObject, scheduleScript, scheduleTask, scheduleTask, scheduleTask, scheduleTask, scheduleTaskObject, scheduleTaskScript, startImmediateTask, startImmediateTask, trace, trace, unscheduledTaskThread, unscheduledTaskThread, update, update, usesTraceSetMethods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.bzdev.obnaming.NamedObjectOps
canDelete, delete, deletePending, getName, isDeleted, isInterned
-
Constructor Details
-
GenericTaskObject
Constructor for task objects that are interned in the simulation tables.- Parameters:
sim- the simulationname- the name of the belief; null if one should be chosenintern- true if the object can be looked up by using the methods inSimulation; false otherwise.- Throws:
IllegalArgumentException- typically means a name is already in use
-
-
Method Details
-
scheduleDefaultCall
Schedule an event to trigger a call to defaultCall.- Parameters:
delay- the number of time units to wait past the current time- Throws:
IllegalStateException- a call was already scheduled
-
cancelDefaultCall
protected void cancelDefaultCall()Cancel a scheduled call to the defaultCall method. -
defaultTask
protected void defaultTask()The method to call when the default task is scheduled. A default task differs from a default call in that a default task can be suspended or paused for a given amount of simulation time, or can be placed on a queue. -
scheduleDefaultTask
Schedule the default task for immediate execution.- Throws:
InterruptedException- execution was interruptedIllegalStateException
-
scheduleDefaultTask
Schedule the default task for future execution.- Parameters:
delay- the amount of simulation time to wait before the task is run- Throws:
InterruptedException- execution was interruptedIllegalStateException
-
cancelDefaultTask
protected void cancelDefaultTask()Cancel the default task. -
defaultCall
protected void defaultCall()Respond to a scheduled event. Subclasses that schedule work should implement this method. When an event queued by scheduleDefaultCall is ready, this method will be called, -
onDelete
protected void onDelete()Complete the actions necessary to delete a named object. A subclass that overrides this method must call super.onDelete() at some point to complete the object deletion. This may not be within the onDelete method of the subclass if the deletion must be delayed for some reason (e.g., until some processing that is in progress has been completed). Once called, the object will be removed from the object-namer's tables and the object will be marked as deleted, so in general cleanup actions by a subclass should occur before it calls super.onDelete(). -
clone
Creates and returns a copy of this object. This method will throw the exception CloneNotSupportedException if the object is interned.- Overrides:
clonein classObject- Throws:
CloneNotSupportedException- a clone could not be created- See Also:
-
isInterned
public boolean isInterned()Determine if an object is interned in a object namer's tables.- Specified by:
isInternedin interfaceNamedObjectOps- Returns:
- true if the object is interned; false if not
-
getObjectNamer
Get the object namer for a named object.- Returns:
- the object namer for this named object
-
getName
Get an object's name.- Specified by:
getNamein interfaceNamedObjectOps- Returns:
- the name of the object
-
canDelete
public boolean canDelete()Determine if this named object can be deleted. A named object can be deleted if the method delete has not been called and if the object is not in a state that prevents the object from being deleted. Subclasses that override this method must call canDelete() for their superclasses and return false if the superclass' canDelete method returns false. The default method returns true if delete() has not been called and returned true.- Specified by:
canDeletein interfaceNamedObjectOps- Returns:
- true if this object can be deleted; false otherwise
-
delete
public final boolean delete()Delete an object. An object can only be deleted once. If this method returns true, the object (if interned) will have been removed from the object namer tables.The implementations provided by
DefaultNamedObectand generated because of a@NamedObjectannotation provide a protected method named onDelete. A subclass that overrides onDelete() must call the onDelete method of its superclass after it's onDelete method has been called and any cleanup actions performed. In some cases, this may happen at a later time (e.g., if a thread is used for some of the cleanup operations or if it is otherwise necessary to wait).- Specified by:
deletein interfaceNamedObjectOps- Returns:
- true if the deletion request was accepted; false otherwise
-
isDeleted
public final boolean isDeleted()Determine if an object has been deleted. An object is deleted if the method delete() has been called and returned true.- Specified by:
isDeletedin interfaceNamedObjectOps- Returns:
- true if deleted; false otherwise
-
deletePending
public final boolean deletePending()Determine if an object is being deleted. An deletion is pending if the method delete() has been called and returned true but the deletion has not been completed.- Specified by:
deletePendingin interfaceNamedObjectOps- Returns:
- true if deletion is pending; false otherwise
-