org.bdware.dogp.DOGPRequestHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-audit-tool Show documentation
Show all versions of doip-audit-tool Show documentation
doip audit tool developed by bdware
package org.bdware.dogp;
import io.netty.channel.ChannelHandlerContext;
import org.bdware.dogp.codec.DOGPMessage;
public interface DOGPRequestHandler {
DOGPMessage onRequest(ChannelHandlerContext ctx, DOGPMessage msg);
}