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

com.webpieces.http2parser.impl.FrameHeaderData Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.webpieces.http2parser.impl;

public class FrameHeaderData {

	private int payloadLength;
	private int streamId;
	private byte frameTypeId;
	private byte flagsByte;

	public FrameHeaderData(int payloadLength, int streamId, byte frameTypeId, byte flagsByte) {
		this.payloadLength = payloadLength;
		this.streamId = streamId;
		this.frameTypeId = frameTypeId;
		this.flagsByte = flagsByte;
	}

	public int getPayloadLength() {
		return payloadLength;
	}

	public int getStreamId() {
		return streamId;
	}

	public byte getFrameTypeId() {
		return frameTypeId;
	}

	public byte getFlagsByte() {
		return flagsByte;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy