Search in sources :

Example 1 with PushStreamHandle

use of com.webpieces.http2engine.api.PushStreamHandle in project webpieces by deanhiller.

the class Level8NotifyClntListeners method sendPushToApp.

public CompletableFuture<Void> sendPushToApp(ClientPushStream stream, Http2Push fullPromise) {
    ResponseHandler listener = stream.getOriginalResponseListener();
    PushStreamHandle pushHandle = listener.openPushStream();
    stream.setPushStreamHandle(pushHandle);
    return pushHandle.process(fullPromise).thenApply(l -> {
        stream.setPushPromiseListener(l);
        return null;
    });
}
Also used : ResponseHandler(com.webpieces.http2engine.api.ResponseHandler) PushStreamHandle(com.webpieces.http2engine.api.PushStreamHandle)

Example 2 with PushStreamHandle

use of com.webpieces.http2engine.api.PushStreamHandle in project webpieces by deanhiller.

the class Level8NotifyClntListeners method sendRstToApp.

@Override
public CompletableFuture<Void> sendRstToApp(Stream stream, CancelReason payload) {
    if (stream instanceof ClientStream) {
        ClientStream str = (ClientStream) stream;
        ResponseHandler handler = str.getResponseListener();
        return handler.cancel(payload);
    }
    ClientPushStream str = (ClientPushStream) stream;
    PushStreamHandle handle = str.getPushStreamHandle();
    return handle.cancelPush(payload);
}
Also used : ResponseHandler(com.webpieces.http2engine.api.ResponseHandler) PushStreamHandle(com.webpieces.http2engine.api.PushStreamHandle)

Aggregations

PushStreamHandle (com.webpieces.http2engine.api.PushStreamHandle)2 ResponseHandler (com.webpieces.http2engine.api.ResponseHandler)2