congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
DriverDelegate.selectCalendars
Code IndexAdd Tabnine to your IDE (free)

How to use
selectCalendars
method
in
org.quartz.impl.jdbcjobstore.DriverDelegate

Best Java code snippets using org.quartz.impl.jdbcjobstore.DriverDelegate.selectCalendars (Showing top 4 results out of 315)

origin: quartz-scheduler/quartz

protected List<String> getCalendarNames(Connection conn)
  throws JobPersistenceException {
  try {
    return getDelegate().selectCalendars(conn);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't obtain trigger groups: " + e.getMessage(), e);
  }
}
origin: quartz-scheduler/quartz

protected List<String> getCalendarNames(Connection conn)
  throws JobPersistenceException {
  try {
    return getDelegate().selectCalendars(conn);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't obtain trigger groups: " + e.getMessage(), e);
  }
}
origin: quartz/quartz-all

protected String[] getCalendarNames(Connection conn, SchedulingContext ctxt)
  throws JobPersistenceException {
  try {
    return getDelegate().selectCalendars(conn);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't obtain trigger groups: " + e.getMessage(), e);
  }
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

protected String[] getCalendarNames(Connection conn, SchedulingContext ctxt)
  throws JobPersistenceException {
  try {
    return getDelegate().selectCalendars(conn);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't obtain trigger groups: " + e.getMessage(), e);
  }
}
org.quartz.impl.jdbcjobstoreDriverDelegateselectCalendars

Javadoc

Select all of the stored calendars.

Popular methods of DriverDelegate

  • calendarExists
    Check whether or not a calendar exists.
  • calendarIsReferenced
    Check whether or not a calendar is referenced by any triggers.
  • deleteCalendar
    Delete a calendar.
  • deleteFiredTrigger
    Delete a fired trigger.
  • deleteFiredTriggers
    Delete all fired triggers of the given instance.
  • deleteJobDetail
    Delete the job detail record for the given job.
  • deletePausedTriggerGroup
  • deleteSchedulerState
    Delete a scheduler-instance state record.
  • deleteTrigger
    Delete the base trigger data for a trigger.
  • insertCalendar
    Insert a new calendar.
  • insertFiredTrigger
    Insert a fired trigger.
  • insertJobDetail
    Insert the job detail record.
  • insertFiredTrigger,
  • insertJobDetail,
  • insertPausedTriggerGroup,
  • insertSchedulerState,
  • insertTrigger,
  • isTriggerGroupPaused,
  • jobExists,
  • selectCalendar,
  • selectFiredTriggerInstanceNames

Popular in Java

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • getResourceAsStream (ClassLoader)
  • notifyDataSetChanged (ArrayAdapter)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Notification (javax.management)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now