All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.xdob.icap4j.IcapClient Maven / Gradle / Ivy

There is a newer version: 0.4.9
Show newest version
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