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: 4.0.3.2
Show newest version
package com.firefly.codec.http2.stream;

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

import com.firefly.codec.http2.model.HttpVersion;

public interface HTTPConnection extends Closeable {

	public HttpVersion getHttpVersion();

	public Object getAttachment();

	public void setAttachment(Object attachment);

	public boolean isOpen();

	public boolean isEncrypted();

	public int getSessionId();

	public long getReadBytes();

	public long getWrittenBytes();

	public InetSocketAddress getLocalAddress();

	public InetSocketAddress getRemoteAddress();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy