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

io.hyperfoil.api.connection.HttpConnection Maven / Gradle / Ivy

There is a newer version: 0.27
Show newest version
package io.hyperfoil.api.connection;

import java.util.function.BiConsumer;
import java.util.function.BiFunction;

import io.netty.buffer.ByteBuf;
import io.hyperfoil.api.session.Session;

/**
 * @author Julien Viet
 */
public interface HttpConnection extends Connection {

    void request(HttpRequest request,
                 BiConsumer[] headerAppenders,
                 BiFunction bodyGenerator);

    HttpRequest peekRequest(int streamId);

    void setClosed();

    boolean isClosed();

    boolean isSecure();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy