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.
bsdgy-server/src/main/java/com/kiisoo/ic/common/MsgEventFactory.java

16 lines
286 B
Java

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();
}
}