com.webpieces.http2engine.api.server.Http2ServerEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http2-engine Show documentation
Show all versions of http2-engine Show documentation
A re-usable asynchronous HTTP/2 parser
package com.webpieces.http2engine.api.server;
import org.webpieces.util.futures.XFuture;
import org.webpieces.data.api.DataWrapper;
public interface Http2ServerEngine {
XFuture intialize();
/**
* Usually not used from server-side but could be
* @return
*/
XFuture sendPing();
XFuture parse(DataWrapper newData);
/**
* completely tear down engine
*/
void farEndClosed();
void initiateClose(String reason);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy