congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
DriverDelegate.jobExists
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: quartz-scheduler/quartz

protected boolean checkExists(Connection conn, JobKey jobKey) throws JobPersistenceException {
  try {
    return getDelegate().jobExists(conn, jobKey);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't check for existence of job: "
        + e.getMessage(), e);
  }
}

origin: quartz-scheduler/quartz

/**
 * <p>
 * Check existence of a given job.
 * </p>
 */
protected boolean jobExists(Connection conn, JobKey jobKey) throws JobPersistenceException {
  try {
    return getDelegate().jobExists(conn, jobKey);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine job existence (" + jobKey + "): " + e.getMessage(), e);
  }
}
origin: quartz-scheduler/quartz

protected boolean checkExists(Connection conn, JobKey jobKey) throws JobPersistenceException {
  try {
    return getDelegate().jobExists(conn, jobKey);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't check for existence of job: "
        + e.getMessage(), e);
  }
}

origin: quartz-scheduler/quartz

/**
 * <p>
 * Check existence of a given job.
 * </p>
 */
protected boolean jobExists(Connection conn, JobKey jobKey) throws JobPersistenceException {
  try {
    return getDelegate().jobExists(conn, jobKey);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine job existence (" + jobKey + "): " + e.getMessage(), e);
  }
}
origin: quartz/quartz-all

/**
 * <p>
 * Check existence of a given job.
 * </p>
 */
protected boolean jobExists(Connection conn, String jobName,
    String groupName) throws JobPersistenceException {
  try {
    return getDelegate().jobExists(conn, jobName, groupName);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine job existence (" + groupName + "."
            + jobName + "): " + e.getMessage(), e);
  }
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * <p>
 * Check existence of a given job.
 * </p>
 */
protected boolean jobExists(Connection conn, String jobName,
    String groupName) throws JobPersistenceException {
  try {
    return getDelegate().jobExists(conn, jobName, groupName);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine job existence (" + groupName + "."
            + jobName + "): " + e.getMessage(), e);
  }
}
org.quartz.impl.jdbcjobstoreDriverDelegatejobExists

Javadoc

Check whether or not the given job exists.

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

Popular in Java

  • Finding current android device location
  • scheduleAtFixedRate (Timer)
  • getSupportFragmentManager (FragmentActivity)
  • runOnUiThread (Activity)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • JFileChooser (javax.swing)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • 21 Best IntelliJ Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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