Package org.apache.activemq.thread

Source Code of org.apache.activemq.thread.Scheduler

/**
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.thread;

import java.util.HashMap;

import edu.emory.mathcs.backport.java.util.concurrent.ScheduledFuture;
import edu.emory.mathcs.backport.java.util.concurrent.ScheduledThreadPoolExecutor;
import edu.emory.mathcs.backport.java.util.concurrent.ThreadFactory;
import edu.emory.mathcs.backport.java.util.concurrent.TimeUnit;

/**
* @version $Revision$
*/
public class Scheduler {

   
    static public ScheduledThreadPoolExecutor clockDaemon = new ScheduledThreadPoolExecutor(5, new ThreadFactory(){
            public Thread newThread(Runnable runnable) {
                Thread thread = new Thread(runnable,"ActiveMQ Scheduler");
                thread.setDaemon(true);
                return thread;
            }
        });
    static {
        clockDaemon.setKeepAliveTime(5, TimeUnit.SECONDS);
        clockDaemon.allowCoreThreadTimeOut(false);
    }
    static HashMap clockTickets = new HashMap();

    synchronized static public void executePeriodically(final Runnable task, long period) {
        ScheduledFuture ticket = clockDaemon.scheduleAtFixedRate(task, period, period, TimeUnit.MILLISECONDS);
        clockTickets.put(task, ticket);
    }

    synchronized static public void cancel(Runnable task) {
        ScheduledFuture ticket = (ScheduledFuture) clockTickets.remove(task);
        if( ticket!=null ) {
            ticket.cancel(false);
          clockDaemon.remove(task);
        }
    }

    public static void executeAfterDelay(final Runnable task, long redeliveryDelay) {
        clockDaemon.schedule(task, redeliveryDelay, TimeUnit.MILLISECONDS);
    }

}
TOP

Related Classes of org.apache.activemq.thread.Scheduler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.