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

com.firefly.codec.http2.stream.HTTPConnection Maven / Gradle / Ivy

There is a newer version: 5.0.0-dev6
Show newest version
package com.firefly.codec.http2.stream;

import com.firefly.codec.http2.model.HttpVersion;
import com.firefly.net.Connection;
import com.firefly.utils.function.Action1;
import com.firefly.utils.function.Action2;

import java.io.Closeable;
import java.net.InetSocketAddress;

public interface HTTPConnection extends Connection {

    HttpVersion getHttpVersion();

    boolean isEncrypted();

    ConnectionType getConnectionType();

    HTTPConnection close(Action1 closedCallback);

    HTTPConnection exception(Action2 exception);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy