/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.nio.channels; import java.io.IOException; import java.nio.channels.spi.SelectorProvider; import java.util.Set; /** * A controller for the selection of {@link SelectableChannel} objects. * Selectable channels can be registered with a selector and get a * {@link SelectionKey} that represents the registration. The keys are also * added to the selector's key set. Selection keys can be canceled so that the * corresponding channel is no longer registered with the selector. *
* By invoking the {@code select} method, the key set is checked and all keys * that have been canceled since last select operation are moved to the set of * canceled keys. During the select operation, the channels registered with this * selector are checked to see whether they are ready for operation according to * their {@link SelectionKey interest set}. */ public abstract class Selector { /** * Returns a selector returned by {@link SelectorProvider#provider}'s * {@link SelectorProvider#openSelector} method. * * @throws IOException * if an I/O error occurs. */ public static Selector open() throws IOException { return SelectorProvider.provider().openSelector(); } /** * Constructs a new {@code Selector}. */ protected Selector() { } /** * Closes this selector. Ongoing calls to the {@code select} methods of this * selector will get interrupted. This interruption behaves as if the * {@link #wakeup()} method of this selector is called. After this, all keys * that are still valid are invalidated and their channels are unregistered. * All resources held by this selector are released. *
* Any further attempt of using this selector after this method has been
* called (except calling {@link #close()} or {@link #wakeup()}) results in
* a {@link ClosedSelectorException} being thrown.
*
* @throws IOException
* if an I/O error occurs.
*/
public abstract void close() throws IOException;
/**
* Indicates whether this selector is open.
*
* @return {@code true} if this selector is not closed, {@code false}
* otherwise.
*/
public abstract boolean isOpen();
/**
* Gets the set of registered keys. The set is immutable and is not thread-
* safe.
*
* @return the set of registered keys.
*/
public abstract Set
* If no {@code select} operation is blocked when {@code wakeup()} is called
* then the next {@code select} operation will return immediately. This can
* be undone by a call to {@code selectNow()}; after calling
* {@code selectNow()}, a subsequent call of {@code select} can block
* again.
*
* @return this selector.
* @throws ClosedSelectorException
* if the selector is closed.
*/
public abstract Selector wakeup();
}