All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.netvirt.ipv6service.utils.Ipv6TimerWheel Maven / Gradle / Ivy

There is a newer version: 0.11.4
Show newest version
/*
 * Copyright (c) 2016 Dell Inc. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */

package org.opendaylight.netvirt.ipv6service.utils;

import io.netty.util.HashedWheelTimer;
import io.netty.util.Timeout;
import io.netty.util.Timer;
import io.netty.util.TimerTask;
import java.util.concurrent.TimeUnit;

public class Ipv6TimerWheel implements AutoCloseable {
    private final Timer ipv6PeriodicRATimerWheel = new HashedWheelTimer();

    public Timeout setPeriodicTransmissionTimeout(TimerTask task, long delay, TimeUnit unit) {
        Timeout timeout = null;
        synchronized (ipv6PeriodicRATimerWheel) {
            timeout  = ipv6PeriodicRATimerWheel.newTimeout(task, delay, unit);
        }
        return timeout;
    }

    public void cancelPeriodicTransmissionTimeout(Timeout timeout) {
        if (timeout != null) {
            synchronized (timeout) {
                if (!timeout.isExpired()) {
                    timeout.cancel();
                }
            }
        }
    }

    @Override
    public void close() {
        ipv6PeriodicRATimerWheel.stop();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy