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

net.anthavio.httl.HttlTransport Maven / Gradle / Ivy

The newest version!
package net.anthavio.httl;

import java.io.Closeable;
import java.io.IOException;

import net.anthavio.httl.TransportBuilder.BaseTransBuilder;

/**
 * 
 * @author martin.vanek
 *
 */
public interface HttlTransport extends Closeable {

	public HttlResponse call(HttlRequest requste) throws IOException;

	/**
	 * Redeclare Closeable to surpress IOException
	 */
	public void close();

	public BaseTransBuilder getConfig();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy