Tabnine Logo
DriverDelegate.selectJobGroups
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: quartz-scheduler/quartz

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

protected List<String> getJobGroupNames(Connection conn)
  throws JobPersistenceException {
  List<String> groupNames;
  try {
    groupNames = getDelegate().selectJobGroups(conn);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't obtain job groups: "
        + e.getMessage(), e);
  }
  return groupNames;
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

protected String[] getJobGroupNames(Connection conn, SchedulingContext ctxt)
  throws JobPersistenceException {
  String[] groupNames = null;
  try {
    groupNames = getDelegate().selectJobGroups(conn);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't obtain job groups: "
        + e.getMessage(), e);
  }
  return groupNames;
}
origin: quartz/quartz-all

protected String[] getJobGroupNames(Connection conn, SchedulingContext ctxt)
  throws JobPersistenceException {
  String[] groupNames = null;
  try {
    groupNames = getDelegate().selectJobGroups(conn);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't obtain job groups: "
        + e.getMessage(), e);
  }
  return groupNames;
}
org.quartz.impl.jdbcjobstoreDriverDelegateselectJobGroups

Javadoc

Select all of the job group names that are stored.

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,
  • selectCalendars,
  • selectFiredTriggerInstanceNames

Popular in Java

  • Start an intent from android
  • setScale (BigDecimal)
  • compareTo (BigDecimal)
  • startActivity (Activity)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Notification (javax.management)
  • JPanel (javax.swing)
  • Github Copilot 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