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

com.webpieces.http2parser.api.dto.lib.Http2Msg Maven / Gradle / Ivy

package com.webpieces.http2parser.api.dto.lib;

/**
 * This is a full Http2Msg and is NOT one to one with the http2 spec but for 
 * HeadersFrame, PushPromiseFrame, ContinuationFrame has combined them into the full
 * readable piece(ie. all headers present).  For one to one frames, look at Http2Frame
 * and it's subclasses which are all one to one with the spec
 * 
 * @author dhiller
 *
 */
public interface Http2Msg {

	int getStreamId();

	Http2MsgType getMessageType();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy