org.quartz

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 » Project Management » quartz » org.quartz 
org.quartz
Package org.quartz

The main package of Quartz, containing the client-side interfaces.




See the Quartz project at Open Symphony for more information.
Java Source File NameTypeComment
AnnualCalendarTest.javaClass Unit test for AnnualCalendar serialization backwards compatibility.
Calendar.javaInterface

An interface to be implemented by objects that define spaces of time during which an associated Trigger may fire.

CriticalSchedulerException.javaClass

An exception that is thrown to indicate that there has been a critical failure within the scheduler's core services (such as loss of database connectivity).

CronExpression.javaClass Provides a parser and evaluator for unix-like cron expressions.
CronExpressionTest.javaClass
CronTrigger.javaClass

A concrete Trigger that is used to fire a org.quartz.JobDetail at given moments in time, defined with Unix 'cron-like' definitions.

InterruptableJob.javaInterface

The interface to be implemented by Job s that provide a mechanism for having their execution interrupted.

Job.javaInterface

The interface to be implemented by classes which represent a 'job' to be performed.

JobDataMap.javaClass

Holds state information for Job instances.

JobDataMap instances are stored once when the Job is added to a scheduler.

JobDataMapTest.javaClass Unit test for JobDataMap serialization backwards compatibility.
JobDetail.javaClass

Conveys the detail properties of a given Job instance.

Quartz does not store an actual instance of a Job class, but instead allows you to define an instance of one, through the use of a JobDetail.

Jobs have a name and group associated with them, which should uniquely identify them within a single Scheduler .

Triggers are the 'mechanism' by which Jobs are scheduled.

JobDetailTest.javaClass Unit test for JobDetail.
JobExecutionContext.javaClass

A context bundle containing handles to various environment information, that is given to a org.quartz.JobDetail instance as it is executed, and to a Trigger instance after the execution completes.

The JobDataMap found on this object (via the getMergedJobDataMap() method) serves as a convenience - it is a merge of the JobDataMap found on the JobDetail and the one found on the Trigger, with the value in the latter overriding any same-named values in the former. It is thus considered a 'best practice' that the execute code of a Job retrieve data from the JobDataMap found on this object NOTE: Do not expect value 'set' into this JobDataMap to somehow be set back onto a StatefulJob's own JobDataMap.

JobExecutionContext s are also returned from the Scheduler.getCurrentlyExecutingJobs() method.

JobExecutionException.javaClass

An exception that can be thrown by a org.quartz.Job to indicate to the Quartz Scheduler that an error occured while executing, and whether or not the Job requests to be re-fired immediately (using the same JobExecutionContext , or whether it wants to be unscheduled.

JobListener.javaInterface

The interface to be implemented by classes that want to be informed when a org.quartz.JobDetail executes.

JobPersistenceException.javaClass

An exception that is thrown to indicate that there has been a failure in the scheduler's underlying persistence mechanism.

NthIncludedDayTrigger.javaClass A trigger which fires on the Nth day of every interval type ( NthIncludedDayTrigger.INTERVAL_TYPE_WEEKLY , NthIncludedDayTrigger.INTERVAL_TYPE_MONTHLY or NthIncludedDayTrigger.INTERVAL_TYPE_YEARLY ) that is not excluded by the associated calendar.
NthIncludedDayTriggerTest.javaClass Unit test for NthIncludedDayTrigger serialization backwards compatibility.
ObjectAlreadyExistsException.javaClass

An exception that is thrown to indicate that an attempt to store a new object (i.e.

PriorityTest.javaClass Test Trigger priority support.
Scheduler.javaInterface

This is the main interface of a Quartz Scheduler.

A Scheduler maintains a registery of org.quartz.JobDetail s and Trigger s.

SchedulerConfigException.javaClass

An exception that is thrown to indicate that there is a misconfiguration of the SchedulerFactory- or one of the components it configures.

SchedulerContext.javaClass

Holds context/environment data that can be made available to Jobs as they are executed.

SchedulerException.javaClass

Base class for exceptions thrown by the Quartz Scheduler .

SchedulerFactory.javaInterface

Provides a mechanism for obtaining client-usable handles to Scheduler instances.

SchedulerListener.javaInterface

The interface to be implemented by classes that want to be informed of major Scheduler events.

SchedulerMetaData.javaClass

Describes the settings and capabilities of a given Scheduler instance.

SerializationTestSupport.javaClass Base class for unit tests that wish to verify backwards compatibily of serialization with earlier versions of Quartz.
SimpleTrigger.javaClass

A concrete Trigger that is used to fire a org.quartz.JobDetail at a given moment in time, and optionally repeated at a specified interval.

SimpleTriggerTest.javaClass Unit test for SimpleTrigger serialization backwards compatibility.
StatefulJob.javaInterface

A marker interface for org.quartz.JobDetail s that wish to have their state maintained between executions.

StatefulJob instances follow slightly different rules from regular Job instances.

Trigger.javaClass

The base abstract class to be extended by all Triggers.

Triggers s have a name and group associated with them, which should uniquely identify them within a single Scheduler .

Triggers are the 'mechanism' by which Job s are scheduled.

TriggerListener.javaInterface

The interface to be implemented by classes that want to be informed when a Trigger fires.

TriggerUtils.javaClass

Convenience and utility methods for simplifying the construction and configuration of Trigger s.

UnableToInterruptJobException.javaClass

An exception that is thrown to indicate that a call to InterruptableJob.interrupt() failed without interrupting the Job.

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