com.webpieces.http2engine.impl.svr.ServerPushStream 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.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