triggerlistener.java

来自「定时器开源项目, 相对于 jcrontab, Quartz 算是更完整的一个项目」· Java 代码 · 共 132 行

JAVA
132
字号
/* * Copyright James House (c) 2001-2004 *  * All rights reserved. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: 1. * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. 2. Redistributions in * binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other * materials provided with the distribution. *  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *   */package org.quartz;/** * <p> * The interface to be implemented by classes that want to be informed when a * <code>{@link Trigger}</code> fires. In general, applications that use a * <code>Scheduler</code> will not have use for this mechanism. * </p> *  * @see Scheduler * @see Trigger * @see JobListener * @see JobExecutionContext *  * @author James House */public interface TriggerListener {    /*     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *      * Interface.     *      * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */    /**     * <p>     * Get the name of the <code>TriggerListener</code>.     * </p>     */    public String getName();    /**     * <p>     * Called by the <code>{@link Scheduler}</code> when a <code>{@link Trigger}</code>     * has fired, and it's associated <code>{@link org.quartz.JobDetail}</code>     * is about to be executed.     * </p>     *      * <p>     * It is called before the <code>vetoJobExecution(..)</code> method of this     * interface.     * </p>     *      * @param trigger     *          The <code>Trigger</code> that has fired.     * @param context     *          The <code>JobExecutionContext</code> that will be passed to     *          the <code>Job</code>'s<code>execute(xx)</code> method.     */    public void triggerFired(Trigger trigger, JobExecutionContext context);    /**     * <p>     * Called by the <code>{@link Scheduler}</code> when a <code>{@link Trigger}</code>     * has fired, and it's associated <code>{@link org.quartz.JobDetail}</code>     * is about to be executed.     * </p>     *      * <p>     * It is called after the <code>triggerFired(..)</code> method of this     * interface.     * </p>     *      * @param trigger     *          The <code>Trigger</code> that has fired.     * @param context     *          The <code>JobExecutionContext</code> that will be passed to     *          the <code>Job</code>'s<code>execute(xx)</code> method.     */    public boolean vetoJobExecution(Trigger trigger, JobExecutionContext context);        /**     * <p>     * Called by the <code>{@link Scheduler}</code> when a <code>{@link Trigger}</code>     * has misfired.     * </p>     *      * @param trigger     *          The <code>Trigger</code> that has misfired.     */    public void triggerMisfired(Trigger trigger);    /**     * <p>     * Called by the <code>{@link Scheduler}</code> when a <code>{@link Trigger}</code>     * has fired, it's associated <code>{@link org.quartz.JobDetail}</code>     * has been executed, and it's <code>triggered(xx)</code> method has been     * called.     * </p>     *      * @param trigger     *          The <code>Trigger</code> that was fired.     * @param context     *          The <code>JobExecutionContext</code> that was passed to the     *          <code>Job</code>'s<code>execute(xx)</code> method.     * @param triggerIntructionCode     *          the result of the call on the <code>Trigger</code>'s<code>triggered(xx)</code>     *          method.     */    public void triggerComplete(Trigger trigger, JobExecutionContext context,            int triggerInstructionCode);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?