亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stdscheduler.java

?? Java中非常實用流控制工具
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
    public void pauseJobGroup(String groupName) throws SchedulerException {
        sched.pauseJobGroup(schedCtxt, groupName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeTrigger(String triggerName, String groupName)
        throws SchedulerException {
        sched.resumeTrigger(schedCtxt, triggerName, groupName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeTriggerGroup(String groupName) throws SchedulerException {
        sched.resumeTriggerGroup(schedCtxt, groupName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeJob(String jobName, String groupName)
        throws SchedulerException {
        sched.resumeJob(schedCtxt, jobName, groupName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeJobGroup(String groupName) throws SchedulerException {
        sched.resumeJobGroup(schedCtxt, groupName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void pauseAll() throws SchedulerException {
        sched.pauseAll(schedCtxt);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeAll() throws SchedulerException {
        sched.resumeAll(schedCtxt);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getJobGroupNames() throws SchedulerException {
        return sched.getJobGroupNames(schedCtxt);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public Trigger[] getTriggersOfJob(String jobName, String groupName)
        throws SchedulerException {
        return sched.getTriggersOfJob(schedCtxt, jobName, groupName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getJobNames(String groupName) throws SchedulerException {
        return sched.getJobNames(schedCtxt, groupName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getTriggerGroupNames() throws SchedulerException {
        return sched.getTriggerGroupNames(schedCtxt);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getTriggerNames(String groupName) throws SchedulerException {
        return sched.getTriggerNames(schedCtxt, groupName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public JobDetail getJobDetail(String jobName, String jobGroup)
        throws SchedulerException {
        return sched.getJobDetail(schedCtxt, jobName, jobGroup);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public Trigger getTrigger(String triggerName, String triggerGroup)
        throws SchedulerException {
        return sched.getTrigger(schedCtxt, triggerName, triggerGroup);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public int getTriggerState(String triggerName, String triggerGroup)
        throws SchedulerException {
        return sched.getTriggerState(schedCtxt, triggerName, triggerGroup);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void addCalendar(String calName, Calendar calendar, boolean replace, boolean updateTriggers)
        throws SchedulerException {
        sched.addCalendar(schedCtxt, calName, calendar, replace, updateTriggers);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public boolean deleteCalendar(String calName) throws SchedulerException {
        return sched.deleteCalendar(schedCtxt, calName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public Calendar getCalendar(String calName) throws SchedulerException {
        return sched.getCalendar(schedCtxt, calName);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getCalendarNames() throws SchedulerException {
        return sched.getCalendarNames(schedCtxt);
    }

    ///////////////////////////////////////////////////////////////////////////
    ///
    /// Listener-related Methods
    ///
    ///////////////////////////////////////////////////////////////////////////

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addGlobalJobListener(JobListener jobListener) {
        sched.addGlobalJobListener(jobListener);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addJobListener(JobListener jobListener) {
        sched.addJobListener(jobListener);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     * @deprecated Use <code>{@link #removeGlobalJobListener(String)}</code>
     */
    public boolean removeGlobalJobListener(JobListener jobListener) {
        return sched.removeGlobalJobListener(
            (jobListener == null) ? null : jobListener.getName());
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeGlobalJobListener(String name) {
        return sched.removeGlobalJobListener(name);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeJobListener(String name) {
        return sched.removeJobListener(name);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public List getGlobalJobListeners() {
        return sched.getGlobalJobListeners();
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public Set getJobListenerNames() {
        return sched.getJobListenerNames();
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public JobListener getGlobalJobListener(String name) {
        return sched.getGlobalJobListener(name);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public JobListener getJobListener(String name) {
        return sched.getJobListener(name);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addGlobalTriggerListener(TriggerListener triggerListener) {
        sched.addGlobalTriggerListener(triggerListener);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addTriggerListener(TriggerListener triggerListener) {
        sched.addTriggerListener(triggerListener);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     * 
     * @deprecated Use <code>{@link #removeGlobalTriggerListener(String)}</code>
     */
    public boolean removeGlobalTriggerListener(TriggerListener triggerListener) {
        return sched.removeGlobalTriggerListener(
            (triggerListener == null) ? null : triggerListener.getName());
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeGlobalTriggerListener(String name) {
        return sched.removeGlobalTriggerListener(name);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeTriggerListener(String name) {
        return sched.removeTriggerListener(name);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public List getGlobalTriggerListeners() {
        return sched.getGlobalTriggerListeners();
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public Set getTriggerListenerNames() {
        return sched.getTriggerListenerNames();
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public TriggerListener getGlobalTriggerListener(String name) {
        return sched.getGlobalTriggerListener(name);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public TriggerListener getTriggerListener(String name) {
        return sched.getTriggerListener(name);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addSchedulerListener(SchedulerListener schedulerListener) {
        sched.addSchedulerListener(schedulerListener);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeSchedulerListener(SchedulerListener schedulerListener) {
        return sched.removeSchedulerListener(schedulerListener);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public List getSchedulerListeners() {
        return sched.getSchedulerListeners();
    }

    public boolean interrupt(String jobName, String groupName) throws UnableToInterruptJobException {
        return sched.interrupt(schedCtxt, jobName, groupName);
    }

    /**
     * @see org.quartz.Scheduler#setJobFactory(org.quartz.spi.JobFactory)
     */
    public void setJobFactory(JobFactory factory) throws SchedulerException {
        sched.setJobFactory(factory);
    }
    
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人av影院在线| 性做久久久久久久免费看| 国产精品一区一区三区| 久久综合五月天婷婷伊人| 国产麻豆一精品一av一免费 | 午夜亚洲福利老司机| 91精品国产综合久久久久| 99国产精品一区| 久久91精品久久久久久秒播| 中文字幕av免费专区久久| 欧美人体做爰大胆视频| 国产精品一区二区在线观看网站 | 91丨porny丨中文| 亚洲理论在线观看| 97国产精品videossex| 亚洲一区在线观看免费观看电影高清| 欧美日韩一区久久| 另类人妖一区二区av| 国产欧美一区视频| 91老师片黄在线观看| 免费观看在线综合色| 国产农村妇女毛片精品久久麻豆 | 在线观看免费亚洲| 青青草国产精品亚洲专区无| 2021中文字幕一区亚洲| 暴力调教一区二区三区| 在线观看区一区二| 日韩一级成人av| 日韩小视频在线观看专区| 7777女厕盗摄久久久| 91猫先生在线| 免费欧美在线视频| 亚洲欧美另类久久久精品| 中文字幕一区二区三区蜜月| 欧美激情综合五月色丁香| 精品国产91洋老外米糕| 国产精品萝li| 久久99精品久久久| 一色桃子久久精品亚洲| 91麻豆精品国产自产在线| 国产精品一区二区三区四区| 亚洲另类春色国产| 精品成人一区二区| 日本电影亚洲天堂一区| 国产一区二区日韩精品| 亚洲综合免费观看高清完整版在线| 欧美videos大乳护士334| av在线一区二区三区| 日本不卡在线视频| 亚洲欧美视频在线观看视频| 欧美精品一区视频| 欧美午夜精品理论片a级按摩| 国产米奇在线777精品观看| 亚洲一区在线观看网站| 中文在线一区二区| 日韩一级片网址| 欧美这里有精品| 国产电影精品久久禁18| 日韩成人免费看| 亚洲乱码国产乱码精品精的特点| 精品精品国产高清一毛片一天堂| 在线看不卡av| 成人一区二区三区视频在线观看| 人禽交欧美网站| 亚洲综合自拍偷拍| 欧美国产欧美综合| 日韩精品专区在线影院重磅| 91官网在线观看| 成人毛片老司机大片| 久久国产精品第一页| 亚洲国产欧美日韩另类综合| 国产精品网站在线观看| 亚洲精品在线电影| 91精品国产一区二区三区香蕉| 91麻豆精品秘密| 丁香六月综合激情| 国模套图日韩精品一区二区| 奇米综合一区二区三区精品视频| 樱桃视频在线观看一区| 国产精品久久久久久久岛一牛影视 | 粉嫩嫩av羞羞动漫久久久| 美日韩黄色大片| 午夜激情久久久| 一区二区三区美女视频| 亚洲天堂2014| 亚洲欧洲国产日本综合| 欧美经典三级视频一区二区三区| 精品国产一区久久| 欧美不卡在线视频| 日韩欧美视频在线| 日韩丝袜情趣美女图片| 欧美日本在线视频| 欧美三级日本三级少妇99| 在线视频你懂得一区| 91理论电影在线观看| 91欧美一区二区| 99re这里都是精品| 99久久国产免费看| 成人午夜视频在线观看| 国产精品亚洲综合一区在线观看| 九色|91porny| 精品一区二区三区免费观看| 青青草国产成人av片免费| 首页国产欧美日韩丝袜| 天天影视色香欲综合网老头| 午夜影院在线观看欧美| 婷婷一区二区三区| 日日夜夜一区二区| 热久久久久久久| 久久精品国产一区二区三区免费看| 日本成人在线看| 久久99国产精品尤物| 国产在线精品一区二区三区不卡 | 国产精品18久久久久久久网站| 国产中文字幕一区| 国产麻豆视频一区二区| 国产传媒日韩欧美成人| 成人午夜碰碰视频| 99麻豆久久久国产精品免费| 99久久精品久久久久久清纯| 91香蕉视频污| 欧美视频你懂的| 91精品国产综合久久久久久久| 日韩精品一区二| 久久久久久久久久久99999| 国产欧美一区视频| 亚洲欧洲综合另类在线| 亚洲一区在线看| 免播放器亚洲一区| 久久久久高清精品| 国产三级欧美三级日产三级99 | 亚洲精品国产一区二区三区四区在线 | 国产激情偷乱视频一区二区三区| 东方欧美亚洲色图在线| 99精品国产视频| 欧美日韩国产一级二级| 精品国产一区二区国模嫣然| 日本一区二区三区视频视频| 亚洲欧洲国产日本综合| 亚洲va韩国va欧美va| 久久精品免费观看| www.亚洲国产| 欧美日韩午夜精品| 欧美精品一区视频| 亚洲人吸女人奶水| 日韩精品成人一区二区在线| 精品一区二区三区香蕉蜜桃| 成人综合在线网站| 欧洲色大大久久| 一区二区三区在线观看动漫| 欧美日韩不卡一区| 成年人国产精品| 精品综合免费视频观看| 亚洲一二三四在线观看| 国产免费久久精品| 国产三级三级三级精品8ⅰ区| 欧美精品日日鲁夜夜添| 一本久久a久久精品亚洲| 国产精品一区二区三区网站| 久久精品国产99久久6| 亚洲第四色夜色| 亚洲一二三级电影| 一区二区免费在线播放| 中文字幕一区不卡| 日韩一区在线看| 国产欧美综合色| www欧美成人18+| 久久综合成人精品亚洲另类欧美| 欧美日韩一二三区| 在线不卡欧美精品一区二区三区| 国产91丝袜在线18| 91丨九色porny丨蝌蚪| 激情深爱一区二区| 亚洲午夜久久久久久久久久久| 日本一区二区免费在线 | 欧美精品tushy高清| 亚洲男人天堂一区| 国产一区二区三区久久久| 成人免费的视频| 欧美一级黄色片| 亚洲天堂精品在线观看| 美腿丝袜亚洲综合| 色婷婷亚洲一区二区三区| 精品国产一区二区三区四区四 | 欧美精品1区2区3区| 国产精品网站在线| 九九视频精品免费| 欧美日韩色综合| 国产精品美女视频| 国产sm精品调教视频网站| 成人激情免费电影网址| 97久久精品人人做人人爽50路| 欧美麻豆精品久久久久久| 在线不卡一区二区| 久久久亚洲精品石原莉奈 | 国产99久久久精品| 亚洲视频小说图片| 欧美影视一区二区三区| 国产精品成人在线观看| 国产麻豆午夜三级精品|