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

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

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

origin: quartz-scheduler/quartz

protected boolean checkExists(Connection conn, TriggerKey triggerKey) throws JobPersistenceException {
  try {
    return getDelegate().triggerExists(conn, triggerKey);
  } catch (SQLException e) {
    throw new JobPersistenceException("Couldn't check for existence of job: "
        + e.getMessage(), e);
  }
}
origin: quartz-scheduler/quartz

protected boolean checkExists(Connection conn, TriggerKey triggerKey) throws JobPersistenceException {
  try {
    return getDelegate().triggerExists(conn, triggerKey);
  } 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 trigger.
 * </p>
 */
protected boolean triggerExists(Connection conn, TriggerKey key) throws JobPersistenceException {
  try {
    return getDelegate().triggerExists(conn, key);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine trigger existence (" + key + "): " + e.getMessage(), e);
  }
}
origin: quartz-scheduler/quartz

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

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

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

Javadoc

Check whether or not a trigger 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,
  • jobExists,
  • selectCalendar,
  • selectCalendars,
  • selectFiredTriggerInstanceNames

Popular in Java

  • Making http requests using okhttp
  • addToBackStack (FragmentTransaction)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getContentResolver (Context)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Collectors (java.util.stream)
  • JTextField (javax.swing)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Best IntelliJ plugins
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