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

com.signalfx.shaded.jetty.io.Connection Maven / Gradle / Ivy

There is a newer version: 1.0.41
Show newest version
//
//  ========================================================================
//  Copyright (c) 1995-2018 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package com.signalfx.shaded.jetty.io;

import java.io.Closeable;
import java.nio.ByteBuffer;

/**
 * 

A {@link Connection} is associated to an {@link EndPoint} so that I/O events * happening on the {@link EndPoint} can be processed by the {@link Connection}.

*

A typical implementation of {@link Connection} overrides {@link #onOpen(ByteBuffer)} to * {@link EndPoint#fillInterested(Callback) set read interest} on the {@link EndPoint}, * and when the {@link EndPoint} signals read readyness, this {@link Connection} can * read bytes from the network and interpret them.

*/ public interface Connection extends Closeable { public void addListener(Listener listener); public void onOpen(); /** *

Callback method invoked when this {@link Connection} is closed.

*

Creators of the connection implementation are responsible for calling this method.

*/ public void onClose(); /** * @return the {@link EndPoint} associated with this {@link Connection} */ public EndPoint getEndPoint(); /** *

Performs a logical close of this connection.

*

For simple connections, this may just mean to delegate the close to the associated * {@link EndPoint} but, for example, SSL connections should write the SSL close message * before closing the associated {@link EndPoint}.

*/ @Override public void close(); public int getMessagesIn(); public int getMessagesOut(); public long getBytesIn(); public long getBytesOut(); public long getCreatedTimeStamp(); public interface UpgradeFrom extends Connection { /* ------------------------------------------------------------ */ /** Take the input buffer from the connection on upgrade. *

This method is used to take any unconsumed input from * a connection during an upgrade. * @return A buffer of unconsumed input. The caller must return the buffer * to the bufferpool when consumed and this connection must not. */ ByteBuffer onUpgradeFrom(); } public interface UpgradeTo extends Connection { /** *

Callback method invoked when this {@link Connection} is upgraded.

*

This must be called before {@link #onOpen()}.

* @param prefilledBuffer An optional buffer that can contain prefilled data. Typically this * results from an upgrade of one protocol to the other where the old connection has buffered * data destined for the new connection. The new connection must take ownership of the buffer * and is responsible for returning it to the buffer pool */ void onUpgradeTo(ByteBuffer prefilled); } public interface Listener { public void onOpened(Connection connection); public void onClosed(Connection connection); public static class Adapter implements Listener { @Override public void onOpened(Connection connection) { } @Override public void onClosed(Connection connection) { } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy