
com.wizzardo.http.framework.template.ReadableDataRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http Show documentation
Show all versions of http Show documentation
Java HTTP-server, based on epoll-lib
package com.wizzardo.http.framework.template;
import com.wizzardo.epoll.readable.ReadableData;
public class ReadableDataRenderer extends Renderer {
private final ReadableData data;
public ReadableDataRenderer(ReadableData data) {
this.data = data;
}
@Override
public RenderResult render() {
throw new IllegalStateException();
}
@Override
public ReadableData renderReadableData() {
return data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy