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

io.hyperfoil.api.http.HttpResponseHandlers Maven / Gradle / Ivy

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

import io.hyperfoil.api.connection.HttpRequest;
import io.hyperfoil.api.connection.ResponseHandlers;
import io.netty.buffer.ByteBuf;

public interface HttpResponseHandlers extends ResponseHandlers {
   void handleStatus(HttpRequest request, int status, String reason);

   void handleHeader(HttpRequest request, CharSequence header, CharSequence value);

   void handleBodyPart(HttpRequest request, ByteBuf buf);

   boolean hasRawBytesHandler();

   void handleRawBytes(HttpRequest request, ByteBuf buf);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy