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

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

Best Java code snippets using org.quartz.impl.jdbcjobstore.DriverDelegate.selectJobsInGroup (Showing top 4 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 Set<JobKey> getJobNames(Connection conn,
    GroupMatcher<JobKey> matcher) throws JobPersistenceException {
  Set<JobKey> jobNames;
  try {
    jobNames = getDelegate().selectJobsInGroup(conn, matcher);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't obtain job names: "
        + e.getMessage(), e);
  }
  return jobNames;
}

origin: quartz-scheduler/quartz

protected Set<JobKey> getJobNames(Connection conn,
    GroupMatcher<JobKey> matcher) throws JobPersistenceException {
  Set<JobKey> jobNames;
  try {
    jobNames = getDelegate().selectJobsInGroup(conn, matcher);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't obtain job names: "
        + e.getMessage(), e);
  }
  return jobNames;
}

origin: com.opensymphony.quartz/com.springsource.org.quartz

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

protected String[] getJobNames(Connection conn, SchedulingContext ctxt,
    String groupName) throws JobPersistenceException {
  String[] jobNames = null;
  try {
    jobNames = getDelegate().selectJobsInGroup(conn, groupName);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't obtain job names: "
        + e.getMessage(), e);
  }
  return jobNames;
}
org.quartz.impl.jdbcjobstoreDriverDelegateselectJobsInGroup

Javadoc

Select all of the jobs contained in a given group.

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

  • Making http post requests using okhttp
  • compareTo (BigDecimal)
  • getSharedPreferences (Context)
  • getSystemService (Context)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • JLabel (javax.swing)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
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