net.xdob.icap4j.IcapClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icap4j Show documentation
Show all versions of icap4j Show documentation
The ICAP Protocol Codec for Java
package net.xdob.icap4j;
import io.netty.buffer.ByteBuf;
import net.xdob.icap4j.codec.FullResponse;
public interface IcapClient {
IcapFuture options(String service, IcapCallback callback);
IcapFuture reqmod(String service, ByteBuf context, IcapCallback callback);
IcapFuture respmod(String service, ByteBuf context, IcapCallback callback);
IcapFuture reqmod(String service, byte[] context, IcapCallback callback);
IcapFuture respmod(String service, byte[] context, IcapCallback callback);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy