com.lmax.disruptor.biz.hooks.DisruptorShutdownHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disruptor-biz Show documentation
Show all versions of disruptor-biz Show documentation
Disruptor Event Chain Integration
The newest version!
package com.lmax.disruptor.biz.hooks;
import com.lmax.disruptor.biz.event.DisruptorEvent;
import com.lmax.disruptor.dsl.Disruptor;
public class DisruptorShutdownHook extends Thread{
private Disruptor disruptor;
public DisruptorShutdownHook(Disruptor disruptor) {
this.disruptor = disruptor;
}
@Override
public void run() {
disruptor.shutdown();
}
}