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

cn.mklaus.framework.extend.AbstractEventQueue Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package cn.mklaus.framework.extend;

import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.scheduling.annotation.Async;

import java.util.concurrent.*;

/**
 * @author Mklaus
 * Created on 2018-01-29 下午3:14
 */
public abstract class AbstractEventQueue implements ApplicationListener, InitializingBean {

    private LinkedBlockingQueue queue;

    @Async
    @Override
    public void onApplicationEvent(T event) {
        this.queue.offer(event);
    }

    @Override
    public void afterPropertiesSet() {
        this.queue = new LinkedBlockingQueue<>();

        ExecutorService singleThreadPool = Executors.newSingleThreadExecutor();
        singleThreadPool.execute(() -> {
            while (true) {
                try {
                    T event = this.queue.take();
                    this.handleEvent(event);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        });

        singleThreadPool.shutdown();
    }

    /**
     * 处理事件
     * @param event 从阻塞队列获取的事件
     */
    protected abstract void handleEvent(T event);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy