提交 b2324144 编写于 作者: 武汉红喜's avatar 武汉红喜

concurrent test

上级 5c8e864f
package org.hongxi.java.util.concurrent;
import java.util.Random;
import java.util.concurrent.DelayQueue;
import java.util.concurrent.Delayed;
import java.util.concurrent.TimeUnit;
/**
* @author shenhongxi 2019/09/04
*/
public class DelayQueueTest {
public static void main(String[] args) {
DelayQueue<DelayedEle> delayQueue = new DelayQueue<>();
Random random = new Random();
for (int i = 0; i < 10; i++) {
DelayedEle element = new DelayedEle(random.nextInt(500), "task:" + i);
delayQueue.offer(element);
}
DelayedEle ele = null;
try {
for (;;) {
while ((ele = delayQueue.take()) != null) {
System.out.println(ele.toString());
}
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
static class DelayedEle implements Delayed {
private final long delayTime; // 延迟时间
private final long expire; // 到期时间
private String taskName; // 任务名称
public DelayedEle(long delay, String taskName) {
delayTime = delay;
this.taskName = taskName;
expire = System.currentTimeMillis() + delay;
}
@Override
public long getDelay(TimeUnit unit) {
return unit.convert(this.expire - System.currentTimeMillis(),
TimeUnit.MILLISECONDS);
}
@Override
public int compareTo(Delayed o) {
return (int) (this.getDelay(TimeUnit.MILLISECONDS) -
o.getDelay(TimeUnit.MILLISECONDS));
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("DelayedEle{");
sb.append("delay=").append(delayTime);
sb.append(", expire=").append(expire);
sb.append(", taskName=").append(taskName).append('\'');
sb.append('}');
return sb.toString();
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册