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

com.webpieces.http2engine.impl.svr.ServerPushStream Maven / Gradle / Ivy

There is a newer version: 2.1.109
Show newest version
package com.webpieces.http2engine.impl.svr;

import org.webpieces.javasm.api.Memento;

import com.webpieces.http2engine.impl.shared.data.Stream;

public class ServerPushStream extends Stream {


	private PushStreamHandleImpl handle;

	public ServerPushStream(String logId, PushStreamHandleImpl handle, int streamId, Memento currentState,
			long localInitialWindowSize, long remoteInitialWindowSize) {
		super(logId, streamId, currentState, localInitialWindowSize, remoteInitialWindowSize, false);
		this.handle = handle;
	}

	public PushStreamHandleImpl getHandle() {
		return handle;
	}

	public void setHasPermit(boolean b) {
		hasPermit = b;
	}
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy