Codota Logo
DriverDelegate.selectTriggerGroups
Code IndexAdd Codota to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
BufferedReader b =
  • Codota IconInputStream in;new BufferedReader(new InputStreamReader(in))
  • Codota IconReader in;new BufferedReader(in)
  • Codota IconFile file;new BufferedReader(new FileReader(file))
  • Smart code suggestions by Codota
}
origin: quartz-scheduler/quartz

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

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

    conn, matcher, STATE_PAUSED_BLOCKED, STATE_BLOCKED);
List<String> groups = getDelegate().selectTriggerGroups(conn, matcher);
origin: quartz-scheduler/quartz

    conn, matcher, STATE_PAUSED_BLOCKED, STATE_BLOCKED);
List<String> groups = getDelegate().selectTriggerGroups(conn, matcher);
origin: com.opensymphony.quartz/com.springsource.org.quartz

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

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

Javadoc

Select all of the trigger 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
  • getSharedPreferences (Context)
  • scheduleAtFixedRate (Timer)
  • requestLocationUpdates (LocationManager)
  • InputStreamReader (java.io)
    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Reference (javax.naming)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • LogFactory (org.apache.commons.logging)
    A minimal incarnation of Apache Commons Logging's LogFactory API, providing just the common Log look
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now