io.datakernel.loader.StaticLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datakernel-http Show documentation
Show all versions of datakernel-http Show documentation
High-performance asynchronous HTTP clients and servers collection.
Package contains a bunch of different built-in servlets for request dispatching, loading of a static content, etc.
package io.datakernel.loader;
import io.datakernel.async.Stage;
import io.datakernel.bytebuf.ByteBuf;
public interface StaticLoader {
Stage getResource(String name);
}