You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
286 B
Java
16 lines
286 B
Java
6 years ago
|
package com.kiisoo.ic.common;
|
||
|
|
||
|
import com.lmax.disruptor.EventFactory;
|
||
|
|
||
|
/**
|
||
|
* 数据槽工厂
|
||
|
* Created by hc on 2019/10/22
|
||
|
*/
|
||
|
public class MsgEventFactory implements EventFactory<MsgEvent> {
|
||
|
|
||
|
@Override
|
||
|
public MsgEvent newInstance() {
|
||
|
return new MsgEvent();
|
||
|
}
|
||
|
}
|