Codota Logo
CalendarIntervalTriggerImpl.setMisfireInstruction
Code IndexAdd Codota to your IDE (free)

How to use
setMisfireInstruction
method
in
org.quartz.impl.triggers.CalendarIntervalTriggerImpl

Best Java code snippets using org.quartz.impl.triggers.CalendarIntervalTriggerImpl.setMisfireInstruction (Showing top 2 results out of 315)

  • Common ways to obtain CalendarIntervalTriggerImpl
private void myMethod () {
CalendarIntervalTriggerImpl c =
  • Codota Iconnew CalendarIntervalTriggerImpl()
  • Smart code suggestions by Codota
}
origin: quartz-scheduler/quartz

/**
 * Build the actual Trigger -- NOT intended to be invoked by end users,
 * but will rather be invoked by a TriggerBuilder which this 
 * ScheduleBuilder is given to.
 * 
 * @see TriggerBuilder#withSchedule(ScheduleBuilder)
 */
@Override
public MutableTrigger build() {
  CalendarIntervalTriggerImpl st = new CalendarIntervalTriggerImpl();
  st.setRepeatInterval(interval);
  st.setRepeatIntervalUnit(intervalUnit);
  st.setMisfireInstruction(misfireInstruction);
  st.setTimeZone(timeZone);
  st.setPreserveHourOfDayAcrossDaylightSavings(preserveHourOfDayAcrossDaylightSavings);
  st.setSkipDayIfHourDoesNotExist(skipDayIfHourDoesNotExist);
  return st;
}
origin: nkcoder/quartz-explained

/**
 * Build the actual Trigger -- NOT intended to be invoked by end users,
 * but will rather be invoked by a TriggerBuilder which this 
 * ScheduleBuilder is given to.
 * 
 * @see TriggerBuilder#withSchedule(ScheduleBuilder)
 */
@Override
public MutableTrigger build() {
  CalendarIntervalTriggerImpl st = new CalendarIntervalTriggerImpl();
  st.setRepeatInterval(interval);
  st.setRepeatIntervalUnit(intervalUnit);
  st.setMisfireInstruction(misfireInstruction);
  st.setTimeZone(timeZone);
  st.setPreserveHourOfDayAcrossDaylightSavings(preserveHourOfDayAcrossDaylightSavings);
  st.setSkipDayIfHourDoesNotExist(skipDayIfHourDoesNotExist);
  return st;
}
org.quartz.impl.triggersCalendarIntervalTriggerImplsetMisfireInstruction

Popular methods of CalendarIntervalTriggerImpl

  • <init>
    Create a DateIntervalTrigger that will occur immediately, and repeat at the the given interval.
  • getRepeatInterval
  • getRepeatIntervalUnit
  • getTimeZone
  • getTimesTriggered
  • setRepeatInterval
  • setRepeatIntervalUnit
  • setTimeZone
  • daylightSavingHourShiftOccurredAndAdvanceNeeded
  • getEndTime
    Get the time at which the DateIntervalTrigger should quit repeating.
  • getFireTimeAfter
  • getMisfireInstruction
  • getFireTimeAfter,
  • getMisfireInstruction,
  • getNextFireTime,
  • getStartTime,
  • hasAdditionalProperties,
  • isPreserveHourOfDayAcrossDaylightSavings,
  • isSkipDayIfHourDoesNotExist,
  • setEndTime,
  • setNextFireTime

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • onCreateOptionsMenu (Activity)
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • JButton (javax.swing)
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