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

io.muserver.AsyncMuHandler Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package io.muserver;


import java.nio.ByteBuffer;

/**
 * @deprecated This interface is no longer used. Instead call {@link MuRequest#handleAsync()} from a standard Mu Handler.
 */
@Deprecated
public interface AsyncMuHandler {

	boolean onHeaders(AsyncContext ctx, Headers headers) throws Exception;

	void onRequestData(AsyncContext ctx, ByteBuffer buffer) throws Exception;

	void onRequestComplete(AsyncContext ctx);


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy