java DelayQueue的使用demo

DelayQueue是什么:

是一个先进先出的队列,里面的元素只有指定的时间到了,才可以被取到。
具体的时间策略由元素来决定.

测试代码:

package com.abc.test;


import com.google.common.base.Stopwatch;
import com.google.common.primitives.Ints;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import java.util.concurrent.DelayQueue;
import java.util.concurrent.Delayed;
import java.util.concurrent.TimeUnit;


/**
 * 注意:以下测试用例只能单独执行.
 */
public class DelayQueueTest {

    static class MyDelayedObject implements Delayed {

        public final long startTime;
        private final String uniqueName;

        /**
         * 只有在初始化多少秒之后才可以取到这个对象.
         *
         * @param delayseconds
         */
        public MyDelayedObject(String uniqueName, long delayseconds) {
            this.uniqueName = uniqueName;
            //startTime是现在的时间加上参数值。也就是说参数就是多少秒之后这个元素才可以取到.
            this.startTime = System.currentTimeMillis() + delayseconds * 1000;
        }

        @Override
        public long getDelay(TimeUnit unit) {
            long diff = startTime - System.currentTimeMillis();
            return unit.convert(diff, TimeUnit.MILLISECONDS);
        }

        @Override
        public int compareTo(Delayed o) {
            return Ints.saturatedCast(
                    this.startTime - ((MyDelayedObject) o).startTime);
        }
    }

    DelayQueue<MyDelayedObject> delayQueue = new DelayQueue<>();

    /**
     * 先准备3个元素,供每个测试用例使用.
     */
    @Before
    public void init() {
        delayQueue.add(new MyDelayedObject("2", 2));
        delayQueue.add(new MyDelayedObject("5", 5));
        delayQueue.add(new MyDelayedObject("10", 10));
    }

    /**
     * 直接取数据,不等待,为空.
     */
    @Test
    public void test1NoWait() {
        Assert.assertNull(delayQueue.poll());
    }

    /**
     * take,一直等数据到来.
     */
    @Test
    public void testTake() throws InterruptedException {
        Stopwatch stopwatch = Stopwatch.createStarted();
        //为了使计时更准确,先清空之前的元素。
        delayQueue.clear();
        //再重新加入一个2的元素.2秒之后才可以被取到
        delayQueue.add(new MyDelayedObject("2", 2));
        //这样到take,时间应该在2秒以上。
        Assert.assertNotNull(delayQueue.take());
        long duration = stopwatch.stop().elapsed(TimeUnit.MILLISECONDS);
        System.out.println(duration + "");
        Assert.assertTrue(duration >= 2000);
    }

    /**
     * 等待3秒再去取数据,可以取到MyDelayedObject(2) .
     */
    @Test
    public void test1Wait3Seconds() throws InterruptedException {
        TimeUnit.SECONDS.sleep(3);
        MyDelayedObject o = delayQueue.poll();
        Assert.assertNotNull(o);
        Assert.assertEquals(o.uniqueName, "2");
    }

    /**
     * 等待7秒再去取数据,取到的仍然是MyDelayedObject(2) .
     */
    @Test
    public void test1Wait7Seconds() throws InterruptedException {
        TimeUnit.SECONDS.sleep(3);
        MyDelayedObject o = delayQueue.poll();
        Assert.assertNotNull(o);
        Assert.assertEquals(o.uniqueName, "2");
        Assert.assertEquals(delayQueue.size(), 2);
    }

    /**
     * 等待7秒再去取数据,取到的仍然是MyDelayedObject(2) .
     */
    @Test
    public void test1Wait7Seconds2() throws InterruptedException {
        TimeUnit.SECONDS.sleep(7);
        delayQueue.poll();
        MyDelayedObject o = delayQueue.poll();
        Assert.assertNotNull(o);
        Assert.assertEquals(o.uniqueName, "5");
        Assert.assertEquals(delayQueue.size(), 1);
    }

    /**
     * 等待12秒再去取数据,
     * 先poll两次.最后的就是 MyDelayedObject(10).
     */
    @Test
    public void test1Wait12Seconds() throws InterruptedException {
        TimeUnit.SECONDS.sleep(12);
        delayQueue.poll();
        delayQueue.poll();
        MyDelayedObject o = delayQueue.poll();
        Assert.assertNotNull(o);
        Assert.assertEquals(o.uniqueName, "10");
        Assert.assertEquals(delayQueue.size(), 0);
    }

    /**
     * size为3。
     * 需要单独运行.
     */
    @Test
    public void testSize() throws InterruptedException {
        Assert.assertEquals(delayQueue.size(), 3);
    }

    /**
     * clear之后size为0。
     * 需要单独运行.
     */
    @Test
    public void testClear() throws InterruptedException {
        delayQueue.clear();
        Assert.assertEquals(delayQueue.size(), 0);
    }

}

欢迎评论区留言

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java中的DelayQueue是一个基于优先级队列实现的延迟队列。它可以用于定时任务调度、缓存过期等场景。 DelayQueue中的元素必须实现Delayed接口,该接口继承自Comparable接口,因此元素需要实现compareTo方法,以便在队列中维护元素的优先级。 DelayQueue中的元素按照延迟时间的大小进行排序,即延迟时间短的元素排在队列的前面。当从队列中取出元素时,只有延迟时间到了的元素才会被取出。 以下是一个使用DelayQueue的简单示例: ```java import java.util.concurrent.DelayQueue; import java.util.concurrent.Delayed; import java.util.concurrent.TimeUnit; public class DelayQueueDemo { public static void main(String[] args) throws InterruptedException { DelayQueue<DelayedElement> queue = new DelayQueue<>(); queue.add(new DelayedElement("task1", 3000)); // 延迟3秒执行 queue.add(new DelayedElement("task2", 2000)); // 延迟2秒执行 queue.add(new DelayedElement("task3", 1000)); // 延迟1秒执行 while (!queue.isEmpty()) { DelayedElement element = queue.take(); // 取出元素 System.out.println(System.currentTimeMillis() + ": " + element); } } } class DelayedElement implements Delayed { private String name; private long expireTime; public DelayedElement(String name, long delay) { this.name = name; this.expireTime = System.currentTimeMillis() + delay; } @Override public long getDelay(TimeUnit unit) { return unit.convert(expireTime - System.currentTimeMillis(), TimeUnit.MILLISECONDS); } @Override public int compareTo(Delayed o) { return Long.compare(this.getDelay(TimeUnit.MILLISECONDS), o.getDelay(TimeUnit.MILLISECONDS)); } @Override public String toString() { return "DelayedElement{" + "name='" + name + '\'' + ", expireTime=" + expireTime + '}'; } } ``` 在上面的示例中,我们创建了一个DelayQueue对象,并向其中添加了三个DelayedElement元素,分别表示3秒、2秒和1秒后执行的任务。然后在一个循环中不断取出元素,直到队列为空。由于每个元素的延迟时间不同,因此取出的顺序也是不同的。 以上就是JavaDelayQueue的简单使用方法。需要注意的是,DelayQueue是线程安全的,可以在多线程环境下使用

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值