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

org.bitbucket.gkutiel.in.Handler Maven / Gradle / Ivy

package org.bitbucket.gkutiel.in;

import io.netty.buffer.ByteBuf;
import io.reactivex.netty.protocol.http.server.HttpServerRequest;
import io.reactivex.netty.protocol.http.server.HttpServerResponse;

public abstract class Handler {
	HttpServerRequest req;
	HttpServerResponse res;

	abstract void handle();

	@SuppressWarnings("static-method") Handler next() {
		return null;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy