Java Doc for ScheduledTimerTask.java in  » J2EE » spring-framework-2.0.6 » org » springframework » scheduling » timer » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » spring framework 2.0.6 » org.springframework.scheduling.timer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.scheduling.timer.ScheduledTimerTask

ScheduledTimerTask
public class ScheduledTimerTask (Code)
JavaBean that describes a scheduled TimerTask , consisting of the TimerTask itself or a Runnable to create a TimerTask for and a delay plus period. The period needs to be specified; there is no point in a default for it.

The JDK's java.util.Timer facility does not offer sophisticated scheduling options such as cron expressions. Consider using Quartz for such advanced needs.

Note that the java.util.Timer mechanism uses a TimerTask instance that is shared between repeated executions, in contrast to Quartz which creates a new Job instance for each execution.
author:
   Juergen Hoeller
since:
   19.02.2004
See Also:   java.util.TimerTask
See Also:   java.util.Timer.schedule(TimerTasklonglong)
See Also:   java.util.Timer.scheduleAtFixedRate(TimerTasklonglong)




Constructor Summary
public  ScheduledTimerTask()
     Create a new ScheduledTimerTask, to be populated via bean properties.
public  ScheduledTimerTask(TimerTask timerTask)
     Create a new ScheduledTimerTask, with default one-time execution without delay.
public  ScheduledTimerTask(TimerTask timerTask, long delay)
     Create a new ScheduledTimerTask, with default one-time execution with the given delay.
public  ScheduledTimerTask(TimerTask timerTask, long delay, long period, boolean fixedRate)
     Create a new ScheduledTimerTask.
public  ScheduledTimerTask(Runnable timerTask)
     Create a new ScheduledTimerTask, with default one-time execution without delay.
public  ScheduledTimerTask(Runnable timerTask, long delay)
     Create a new ScheduledTimerTask, with default one-time execution with the given delay.
public  ScheduledTimerTask(Runnable timerTask, long delay, long period, boolean fixedRate)
     Create a new ScheduledTimerTask.

Method Summary
public  longgetDelay()
     Return the delay before starting the job for the first time.
public  longgetPeriod()
     Return the period between repeated task executions.
public  TimerTaskgetTimerTask()
     Return the TimerTask to schedule.
public  booleanisFixedRate()
     Return whether to schedule as fixed-rate execution.
public  booleanisOneTimeTask()
    
public  voidsetDelay(long delay)
     Set the delay before starting the task for the first time, in milliseconds.
public  voidsetFixedRate(boolean fixedRate)
     Set whether to schedule as fixed-rate execution, rather than fixed-delay execution.
public  voidsetPeriod(long period)
     Set the period between repeated task executions, in milliseconds.

Default is -1, leading to one-time execution.

public  voidsetRunnable(Runnable timerTask)
     Set the Runnable to schedule as TimerTask.
public  voidsetTimerTask(TimerTask timerTask)
     Set the TimerTask to schedule.


Constructor Detail
ScheduledTimerTask
public ScheduledTimerTask()(Code)
Create a new ScheduledTimerTask, to be populated via bean properties.
See Also:   ScheduledTimerTask.setTimerTask
See Also:   ScheduledTimerTask.setDelay
See Also:   ScheduledTimerTask.setPeriod
See Also:   ScheduledTimerTask.setFixedRate



ScheduledTimerTask
public ScheduledTimerTask(TimerTask timerTask)(Code)
Create a new ScheduledTimerTask, with default one-time execution without delay.
Parameters:
  timerTask - the TimerTask to schedule



ScheduledTimerTask
public ScheduledTimerTask(TimerTask timerTask, long delay)(Code)
Create a new ScheduledTimerTask, with default one-time execution with the given delay.
Parameters:
  timerTask - the TimerTask to schedule
Parameters:
  delay - the delay before starting the task for the first time (ms)



ScheduledTimerTask
public ScheduledTimerTask(TimerTask timerTask, long delay, long period, boolean fixedRate)(Code)
Create a new ScheduledTimerTask.
Parameters:
  timerTask - the TimerTask to schedule
Parameters:
  delay - the delay before starting the task for the first time (ms)
Parameters:
  period - the period between repeated task executions (ms)
Parameters:
  fixedRate - whether to schedule as fixed-rate execution



ScheduledTimerTask
public ScheduledTimerTask(Runnable timerTask)(Code)
Create a new ScheduledTimerTask, with default one-time execution without delay.
Parameters:
  timerTask - the Runnable to schedule as TimerTask



ScheduledTimerTask
public ScheduledTimerTask(Runnable timerTask, long delay)(Code)
Create a new ScheduledTimerTask, with default one-time execution with the given delay.
Parameters:
  timerTask - the Runnable to schedule as TimerTask
Parameters:
  delay - the delay before starting the task for the first time (ms)



ScheduledTimerTask
public ScheduledTimerTask(Runnable timerTask, long delay, long period, boolean fixedRate)(Code)
Create a new ScheduledTimerTask.
Parameters:
  timerTask - the Runnable to schedule as TimerTask
Parameters:
  delay - the delay before starting the task for the first time (ms)
Parameters:
  period - the period between repeated task executions (ms)
Parameters:
  fixedRate - whether to schedule as fixed-rate execution




Method Detail
getDelay
public long getDelay()(Code)
Return the delay before starting the job for the first time.



getPeriod
public long getPeriod()(Code)
Return the period between repeated task executions.



getTimerTask
public TimerTask getTimerTask()(Code)
Return the TimerTask to schedule.



isFixedRate
public boolean isFixedRate()(Code)
Return whether to schedule as fixed-rate execution.



isOneTimeTask
public boolean isOneTimeTask()(Code)
Is this task only ever going to execute once? true if this task is only ever going to execute once
See Also:   ScheduledTimerTask.getPeriod()



setDelay
public void setDelay(long delay)(Code)
Set the delay before starting the task for the first time, in milliseconds. Default is 0, immediately starting the task after successful scheduling.



setFixedRate
public void setFixedRate(boolean fixedRate)(Code)
Set whether to schedule as fixed-rate execution, rather than fixed-delay execution. Default is "false", that is, fixed delay.

See Timer javadoc for details on those execution modes.
See Also:   java.util.Timer.schedule(TimerTasklonglong)
See Also:   java.util.Timer.scheduleAtFixedRate(TimerTasklonglong)




setPeriod
public void setPeriod(long period)(Code)
Set the period between repeated task executions, in milliseconds.

Default is -1, leading to one-time execution. In case of a positive value, the task will be executed repeatedly, with the given interval inbetween executions.

Note that the semantics of the period value vary between fixed-rate and fixed-delay execution.

Note: A period of 0 (for example as fixed delay) is not supported, simply because java.util.Timer itself does not support it. Hence a value of 0 will be treated as one-time execution; however, that value should never be specified explicitly in the first place!
See Also:   ScheduledTimerTask.setFixedRate
See Also:   ScheduledTimerTask.isOneTimeTask()
See Also:   java.util.Timer.schedule(TimerTasklonglong)




setRunnable
public void setRunnable(Runnable timerTask)(Code)
Set the Runnable to schedule as TimerTask.
See Also:   DelegatingTimerTask



setTimerTask
public void setTimerTask(TimerTask timerTask)(Code)
Set the TimerTask to schedule.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.