org.eclipse.jetty.server.NetworkConnector Maven / Gradle / Ivy
Show all versions of jetty-server Show documentation
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package org.eclipse.jetty.server;
import java.io.Closeable;
import java.io.IOException;
import java.util.EventListener;
/**
* A {@link Connector} for TCP/IP network connectors
*/
public interface NetworkConnector extends Connector, Closeable
{
/**
* Performs the activities needed to open the network communication
* (for example, to start accepting incoming network connections).
* Implementation must be idempotent.
*
* @throws IOException if this connector cannot be opened
* @see #close()
*/
void open() throws IOException;
/**
* Performs the activities needed to close the network communication
* (for example, to stop accepting network connections).
* Once a connector has been closed, it cannot be opened again without first
* calling {@link #stop()} and it will not be active again until a subsequent call to {@link #start()}.
* Implementation must be idempotent.
*/
@Override
void close();
/**
* A Connector may be opened and not started (to reserve a port)
* or closed and running (to allow graceful shutdown of existing connections)
*
* @return True if the connector is Open.
*/
boolean isOpen();
/**
* @return The hostname representing the interface to which
* this connector will bind, or null for all interfaces.
*/
String getHost();
/**
* @return The configured port for the connector or 0 if any available
* port may be used.
*/
int getPort();
/**
* @return The actual port the connector is listening on, or
* -1 if it has not been opened, or -2 if it has been closed.
*/
int getLocalPort();
/**
* Receives notifications of the {@link NetworkConnector#open()}
* and {@link NetworkConnector#close()} events.
*/
interface Listener extends EventListener
{
/**
* Invoked when the given {@link NetworkConnector} has been opened.
*
* @param connector the {@link NetworkConnector} that has been opened
*/
default void onOpen(NetworkConnector connector)
{
}
/**
* Invoked when the given {@link NetworkConnector} has been closed.
*
* @param connector the {@link NetworkConnector} that has been closed
*/
default void onClose(NetworkConnector connector)
{
}
}
}