BEA Systems, Inc.

weblogic.time.common
Interface ScheduledTriggerDef


Deprecated. As of WebLogic Server 7.0, replaced by Timer.

public interface ScheduledTriggerDef

ScheduledTriggerDef objects are returned by the factory method TimeServicesDef.getScheduledTrigger(), and represent a scheduler-trigger pair. The ScheduledTrigger does not begin execution until the ScheduledTriggerDef.schedule() method is called. At a later point, the ScheduledTrigger can be deactivated by calling its cancel() method, or by returning zero (0) from its schedule() method. The schedule()method returns a unique number that can be used as a key for the scheduled trigger.

See Also:
TimeServicesDef

Method Summary
 boolean cancel()
          Deprecated. Deprecated in WebLogic Server 6.1
 boolean isDaemon()
          Deprecated. Deprecated in WebLogic Server 6.1
 int schedule()
          Deprecated. Deprecated in WebLogic Server 6.1
 void setDaemon(boolean isDaemon)
          Deprecated. Deprecated in WebLogic Server 6.1
 void setWorkManager(weblogic.work.WorkManager manager)
          Deprecated. Deprecated in WebLogic Server 6.1
 

Method Detail

schedule

int schedule()
Deprecated. Deprecated in WebLogic Server 6.1

Begins (recurring) execution of the schedule()-trigger() cycle.

Returns:
Unique number that can be used as a key
Throws:
TimeTriggerException - if the cycle cannot be started

cancel

boolean cancel()
Deprecated. Deprecated in WebLogic Server 6.1

Ends (recurring) execution of the schedule()-trigger() cycle.

Returns:
true if the cycle is stopped
Throws:
TimeTriggerException - if the trigger cannot be cancelled

setDaemon

void setDaemon(boolean isDaemon)
Deprecated. Deprecated in WebLogic Server 6.1

If set to true, the trigger will continue executing after the client has disconnected. This is only valid for server-side triggers.

Throws:
TimeTriggerException - if the trigger has already been cancelled.

setWorkManager

void setWorkManager(weblogic.work.WorkManager manager)
Deprecated. Deprecated in WebLogic Server 6.1


isDaemon

boolean isDaemon()
Deprecated. Deprecated in WebLogic Server 6.1

Returns true, if the trigger is set to continue executing after the client has disconnected. This is only valid for server-side triggers.

Throws:
TimeTriggerException - if the trigger has already been cancelled.

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs92
Copyright 2006 BEA Systems Inc.