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

com.webpieces.http2parser.api.FrameMarshaller Maven / Gradle / Ivy

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

import com.webpieces.http2parser.api.dto.Http2Frame;
import org.webpieces.data.api.DataWrapper;

import java.util.Optional;

public interface FrameMarshaller {
    DataWrapper marshalPayload(Http2Frame frame);
    byte marshalFlags(Http2Frame frame);

    void unmarshalFlagsAndPayload(Http2Frame frame, byte flagsByte, Optional maybePayload);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy