【JavaEE】多线程案例-定时器

简介: 【JavaEE】多线程案例-定时器

1. 前言

在生活中,我们肯定遇到过访问某个网站的时候或者加载视频的时候,出现请求超时的现象吧,如果客户端向服务器发送请求,但是没有得到响应该怎么办呢?难道要让我们死等吗?这肯定是不现实的,那么这时候就需要用到我们的定时器。客户端向服务器发送请求,如果超过一段时间没有得到响应,那么定时器就会决定是重新发送请求还是停止请求。在多线程案例中,定时器是一个比较复杂的案例,同时也是比较重要的一个多线程案例。今天我将为大家分享关于定时器知识的分享。

2. 如何使用Java标准库提供的定时器

在 Java 的 util 包下提供了定时器的实现,我们可以直接使用 Java 标准库提供的定时器。

import java.util.Timer;
import java.util.TimerTask;
public class Demo1 {
    public static void main(String[] args) {
        Timer timer = new Timer();
        timer.schedule(new TimerTask() {
            @Override
            public void run() {
                System.out.println(3000);
            }
        },3000);
        timer.schedule(new TimerTask() {
            @Override
            public void run() {
                System.out.println(2000);
            }
        },2000);
        timer.schedule(new TimerTask() {
            @Override
            public void run() {
                System.out.println(1000);
            }
        },1000);
        System.out.println("定时器开始");
    }
}

  • Timer 类表示定时器类
  • 调用 Timer 类的 schedule 方法,将 TimerTask 类添加到定时器内
  • TimerTask 类包括了该任务的具体实现内容,以及执行这个任务的时间

delay 表示从调用 schedule 方法开始的多长时间执行这个任务。不管哪个任务先添加的,总是按照时间的从小到大顺序执行。并且仔细观察我们可以发现,当执行完定时器当中的内容的时候,整个线程并没有结束,这是因为 Timer 内部的线程阻止了线程的结束。


3. 如何自己实现一个定时器

3.1 构建 MyTimerTask 任务类

虽然 Java 标准库为我们提供了定时器,但是我们作为初学者,还是需要知道他究竟是如何实现的,我们能自己实现一个计时器对理解定时器作用是非常大的。

class Mytimer {
    private long time;
    private Runnable runnable;
    public Mytimer(Runnable runnable, long delay) {
        this.runnable = runnable;
        this.time = System.currentTimeMillis() + delay;
    }
    public long getTime() {
        return this.time;
    }
    public Runnable getRunnable() {
        return this.runnable;
    }
}

先创建一个 MyTimerTask 类用来描述任务的具体内容,包括执行的操作和执行的时间。

3.2 使用优先级队列来存储多个任务


当创建一个 MyTimerTask 类用来描述具体的内容之后,又该用什么来存储这多个 MyTimerTask 任务呢?因为它是按照时间的先后顺序执行的,时间近的任务优先级高,那么这样的话,我们就可以使用优先级队列这个数据结构来存储 MyTimerTask 类,并且创建的小根堆,时间最接近的放在堆顶。

  PriorityQueue<MyTimerTask> queue = new PriorityQueue<>();

3.3 实现 schedule 方法来添加任务

当调用 schedule 方法的时候,就调用 PriorityQueue 的 offer 方法将任务添加到优先级队列中。

  public void schedule(MyTimerTask myTimerTask) {
        queue.offer(myTimerTask);
    }

3.4 实现 Timer 类当中的扫描线程和具体细节

Timer 线程中需要一个扫描线程来看堆顶任务是否该执行了。当优先级队列为空的时候,需要该线程进入等待状态,直到调用 schedule 方法向队列中添加任务的时候才唤醒该线程。所以我们前面的 schedule 方法就需要稍作调整。

  private static Object locker = new Object();
    public void schedule(MyTimerTask myTimerTask) {
        synchronized (locker) {
            queue.offer(myTimerTask);
            locker.notify();
        }
    }
    public MyTimer() {
        Thread t = new Thread(() -> {
            while (true) {
                try {
                    synchronized (locker) {
                      //通常线程被唤醒之后的判断不使用if,
                      //而是使用while循环,因为唤醒线程的方法不止有notify
                      //interrupt方法也可以唤醒处于等待状态的线程
                      //当处于等待状态的线程是因为interrupt方法唤醒的时候
                      //就说明没有执行schedule方法,此时queue中还是为空的
                        while (queue.isEmpty()) {
                            locker.wait();
                        }
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

这里在调用 schedule 方法的好处不止有唤醒当堆为空时的等待状态,还有一些好处,我们在后面遇到的时候为大家讲解。

当堆不为空的时候,就要判断堆顶的任务是否到了需要执行的时间,如果到了需要执行的时间,就执行,没到则不需要做。

  public MyTimer() {
        Thread t = new Thread(() -> {
            while (true) {
                try {
                    synchronized (locker) {
                        while (queue.isEmpty()) {
                            locker.wait();
                        }
                        MyTimerTask task = queue.peek();
                        if (curTime >= task.getTime()) {
                            task.getRunnable().run();
                            queue.poll();
                        }else {
                            ;
                        }
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
        t.start();
    }

当我们运行这个计时器的时候,看看结果如何

import java.util.PriorityQueue;
class MyTimerTask {
    private long time;
    private Runnable runnable;
    public MyTimerTask(Runnable runnable, long delay) {
        this.runnable = runnable;
        this.time = System.currentTimeMillis() + delay;
    }
    public long getTime() {
        return this.time;
    }
    public Runnable getRunnable() {
        return this.runnable;
    }
}
class MyTimer {
    PriorityQueue<MyTimerTask> queue = new PriorityQueue<>();
    private static Object locker = new Object();
    public void schedule(Runnable runnable, long delay) {
        synchronized (locker) {
            queue.offer(new MyTimerTask(runnable,delay));
            locker.notify();
        }
    }
    public MyTimer() {
        Thread t = new Thread(() -> {
            while (true) {
                try {
                    synchronized (locker) {
                        while (queue.isEmpty()) {
                            locker.wait();
                        }
                        MyTimerTask task = queue.peek();
                        long curTime = System.currentTimeMillis();
                        if (curTime >= task.getTime()) {
                            task.getRunnable().run();
                            queue.poll();
                        }else {
                            ;
                        }
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
        t.start();
    }
}
public class Demo3 {
    public static void main(String[] args) {
        MyTimer myTimer = new MyTimer();
        myTimer.schedule(new Runnable() {
            @Override
            public void run() {
                System.out.println(3000);
            }
        },3000);
        myTimer.schedule(new Runnable() {
            @Override
            public void run() {
                System.out.println(2000);
            }
        },2000);
        myTimer.schedule(new Runnable() {
            @Override
            public void run() {
                System.out.println(1000);
            }
        },1000);
        System.out.println("计时器开始");
    }
}

这里为什么会报错呢?

3.5 定时器的修改及优化


这里我们遗漏了一个细节,前面学习优先级队列的时候,我们知道优先级队列当中的元素必须是可比较的元素,跟 TreeMap 和 TreeSet 是一样的,但是 MyTimerTask 是一个类,类与类之间是不能够进行大小的比较的,所以我们需要重写 MyTimerTask 中的 compareTo 方法来指明比较方式。

class MyTimerTask implements Comparable<MyTimerTask>{
    private long time;
    private Runnable runnable;
    public MyTimerTask(Runnable runnable, long delay) {
        this.runnable = runnable;
        this.time = System.currentTimeMillis() + delay;
    }
    public long getTime() {
        return this.time;
    }
    public Runnable getRunnable() {
        return this.runnable;
    }
    @Override
    public int compareTo(MyTimerTask o) {
        return (int) (this.time - o.time);
    }
}

当进行这样的修改之后,堆中的元素就是可比较的了。写到这里其实功能就已经实现了,但是呢?还需要做出优化:当堆顶元素未到达执行时间的时候,难道真的什么都不用做吗?如果什么都不做的话,那么代码就会回到上面的while循环部分,继续判断堆顶元素是否到达了执行时间,因为计算机的执行速度很快,那么在这个到达执行堆顶元素任务的时间之内又进行了上万次判断,那么这种情况就叫做忙等。要想解决这个忙等问题,当判断未到达堆顶元素的执行时间的时候,我们让该线程等待一定的时间,不让这个线程继续循环判断。

  public MyTimer() {
        Thread t = new Thread(() -> {
            while (true) {
                try {
                    synchronized (locker) {
                        while (queue.isEmpty()) {
                            locker.wait();
                        }
                        MyTimerTask task = queue.peek();
                        long curTime = System.currentTimeMillis();
                        if (curTime >= task.getTime()) {
                            task.getRunnable().run();
                            queue.poll();
                        }else {
                            locker.wait(task.getTime() - curTime);
                        }
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
        t.start();
    }

到这里就可以说说前面 schedule 方法的 notify 方法的又一个好处:如果在 Timer 计时器在等待执行堆顶元素的过程中,又加入了一个任务,并且这个任务的执行时间先于之前堆顶元素任务的执行时间,那么当添加完成之后就会唤醒 Timer 计时器的等待状态,然后将这个刚加入的任务放入堆顶,并且下一个执行该任务。

4. 计时器完整代码

import java.util.PriorityQueue;
class MyTimerTask implements Comparable<MyTimerTask>{
    private long time;
    private Runnable runnable;
    public MyTimerTask(Runnable runnable, long delay) {
        this.runnable = runnable;
        this.time = System.currentTimeMillis() + delay;
    }
    public long getTime() {
        return this.time;
    }
    public Runnable getRunnable() {
        return this.runnable;
    }
    @Override
    public int compareTo(MyTimerTask o) {
        return (int) (this.time - o.time);
    }
}
class MyTimer {
    PriorityQueue<MyTimerTask> queue = new PriorityQueue<>();
    private static Object locker = new Object();
    public void schedule(Runnable runnable, long delay) {
        synchronized (locker) {
            queue.offer(new MyTimerTask(runnable,delay));
            locker.notify();
        }
    }
    public MyTimer() {
        Thread t = new Thread(() -> {
            while (true) {
                try {
                    synchronized (locker) {
                        while (queue.isEmpty()) {
                            locker.wait();
                        }
                        MyTimerTask task = queue.peek();
                        long curTime = System.currentTimeMillis();
                        if (curTime >= task.getTime()) {
                            task.getRunnable().run();
                            queue.poll();
                        }else {
                            locker.wait(task.getTime() - curTime);
                        }
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
        t.start();
    }
}
public class Demo3 {
    public static void main(String[] args) {
        MyTimer myTimer = new MyTimer();
        myTimer.schedule(new Runnable() {
            @Override
            public void run() {
                System.out.println(3000);
            }
        },3000);
        myTimer.schedule(new Runnable() {
            @Override
            public void run() {
                System.out.println(2000);
            }
        },2000);
        myTimer.schedule(new Runnable() {
            @Override
            public void run() {
                System.out.println(1000);
            }
        },1000);
        System.out.println("计时器开始");
    }
}

相关文章
|
15天前
|
安全 Java
Java多线程通信新解:本文通过生产者-消费者模型案例,深入解析wait()、notify()、notifyAll()方法的实用技巧
【10月更文挑战第20天】Java多线程通信新解:本文通过生产者-消费者模型案例,深入解析wait()、notify()、notifyAll()方法的实用技巧,包括避免在循环外调用wait()、优先使用notifyAll()、确保线程安全及处理InterruptedException等,帮助读者更好地掌握这些方法的应用。
12 1
|
1月前
|
安全 Java
【多线程-从零开始-拾】Timer-定时器
【多线程-从零开始-拾】Timer-定时器
28 0
|
2月前
|
安全 Java 调度
python3多线程实战(python3经典编程案例)
该文章提供了Python3中多线程的应用实例,展示了如何利用Python的threading模块来创建和管理线程,以实现并发执行任务。
35 0
|
3月前
|
消息中间件 安全 Kafka
"深入实践Kafka多线程Consumer:案例分析、实现方式、优缺点及高效数据处理策略"
【8月更文挑战第10天】Apache Kafka是一款高性能的分布式流处理平台,以高吞吐量和可扩展性著称。为提升数据处理效率,常采用多线程消费Kafka数据。本文通过电商订单系统的案例,探讨了多线程Consumer的实现方法及其利弊,并提供示例代码。案例展示了如何通过并行处理加快订单数据的处理速度,确保数据正确性和顺序性的同时最大化资源利用。多线程Consumer有两种主要模式:每线程一个实例和单实例多worker线程。前者简单易行但资源消耗较大;后者虽能解耦消息获取与处理,却增加了系统复杂度。通过合理设计,多线程Consumer能够有效支持高并发数据处理需求。
154 4
|
3月前
|
数据采集 Java Python
python 递归锁、信号量、事件、线程队列、进程池和线程池、回调函数、定时器
python 递归锁、信号量、事件、线程队列、进程池和线程池、回调函数、定时器
|
6月前
|
设计模式 安全 Java
多线程(代码案例: 单例模式, 阻塞队列, 生产者消费者模型,定时器)
多线程(代码案例: 单例模式, 阻塞队列, 生产者消费者模型,定时器)
55 2
|
6月前
|
设计模式 安全 Java
Java 多线程系列Ⅳ(单例模式+阻塞式队列+定时器+线程池)
Java 多线程系列Ⅳ(单例模式+阻塞式队列+定时器+线程池)
|
5月前
|
安全 Java 容器
线程池,定时器以及阻塞队列(生产者/消费者模型)
线程池,定时器以及阻塞队列(生产者/消费者模型)
36 0
|
30天前
|
存储 消息中间件 资源调度
C++ 多线程之初识多线程
这篇文章介绍了C++多线程的基本概念,包括进程和线程的定义、并发的实现方式,以及如何在C++中创建和管理线程,包括使用`std::thread`库、线程的join和detach方法,并通过示例代码展示了如何创建和使用多线程。
38 1
C++ 多线程之初识多线程
|
15天前
|
Java 开发者
在Java多线程编程中,创建线程的方法有两种:继承Thread类和实现Runnable接口
【10月更文挑战第20天】在Java多线程编程中,创建线程的方法有两种:继承Thread类和实现Runnable接口。本文揭示了这两种方式的微妙差异和潜在陷阱,帮助你更好地理解和选择适合项目需求的线程创建方式。
13 3