Java Doc for ScheduledTimerListener.java in  » J2EE » spring-framework-2.5 » org » springframework » scheduling » commonj » 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.5 » org.springframework.scheduling.commonj 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.scheduling.commonj.ScheduledTimerListener

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

The CommonJ TimerManager does not offer more sophisticated scheduling options such as cron expressions. Consider using Quartz for such advanced needs.

Note that the TimerManager uses a TimerListener instance that is shared between repeated executions, in contrast to Quartz which instantiates a new Job for each execution.
author:
   Juergen Hoeller
since:
   2.0
See Also:   commonj.timers.TimerListener
See Also:   commonj.timers.TimerManager.schedule(commonj.timers.TimerListenerlonglong)
See Also:   commonj.timers.TimerManager.scheduleAtFixedRate(commonj.timers.TimerListenerlonglong)




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

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  TimerListenergetTimerListener()
     Return the TimerListener 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 TimerListener.
public  voidsetTimerListener(TimerListener timerListener)
     Set the TimerListener to schedule.


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



ScheduledTimerListener
public ScheduledTimerListener(TimerListener timerListener)(Code)
Create a new ScheduledTimerListener, with default one-time execution without delay.
Parameters:
  timerListener - the TimerListener to schedule



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



ScheduledTimerListener
public ScheduledTimerListener(TimerListener timerListener, long delay, long period, boolean fixedRate)(Code)
Create a new ScheduledTimerListener.
Parameters:
  timerListener - the TimerListener 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



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



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



ScheduledTimerListener
public ScheduledTimerListener(Runnable timerTask, long delay, long period, boolean fixedRate)(Code)
Create a new ScheduledTimerListener.
Parameters:
  timerTask - the Runnable to schedule as TimerListener
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.



getTimerListener
public TimerListener getTimerListener()(Code)
Return the TimerListener 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:   ScheduledTimerListener.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.

If the "firstTime" property is specified, this property will be ignored. Specify one or the other, not both.




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

See TimerManager javadoc for details on those execution modes.
See Also:   commonj.timers.TimerManager.schedule(commonj.timers.TimerListenerlonglong)
See Also:   commonj.timers.TimerManager.scheduleAtFixedRate(commonj.timers.TimerListenerlonglong)




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 zero or 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 supported, because the CommonJ specification defines this as a legal value. Hence a value of 0 will result in immediate re-execution after a job has finished (not in one-time execution like with java.util.Timer).
See Also:   ScheduledTimerListener.setFixedRate
See Also:   ScheduledTimerListener.isOneTimeTask()
See Also:   commonj.timers.TimerManager.schedule(commonj.timers.TimerListenerlonglong)




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



setTimerListener
public void setTimerListener(TimerListener timerListener)(Code)
Set the TimerListener 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.