
com.webpieces.http2parser.api.HeaderBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http2-parser Show documentation
Show all versions of http2-parser Show documentation
A re-usable asynchronous http2 parser
package com.webpieces.http2parser.api;
import com.webpieces.http2parser.impl.HeaderBlockImpl;
import org.webpieces.data.api.DataWrapper;
import java.util.Map;
public interface HeaderBlock {
class Header {
public Header(String header, String value) {
this.header = header;
this.value = value;
}
public String header;
public String value;
}
DataWrapper serialize();
Map getMap();
void setFromMap(Map map);
void deserialize(DataWrapper data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy