forked from I2P_Developers/i2p.i2p
27 lines
825 B
Java
27 lines
825 B
Java
package net.i2p.client.streaming;
|
|
|
|
import net.i2p.client.streaming.I2PSocket;
|
|
import net.i2p.client.streaming.I2PSocketManager;
|
|
import net.i2p.I2PException;
|
|
import java.net.ConnectException;
|
|
import java.nio.channels.SelectableChannel;
|
|
|
|
/**
|
|
* As this does not (yet) extend ServerSocketChannel it cannot be returned by StandardServerSocket.getChannel(),
|
|
* until we implement an I2P SocketAddress class.
|
|
*
|
|
* Warning, this interface and implementation is preliminary and subject to change without notice.
|
|
*
|
|
* @since 0.8.11
|
|
*/
|
|
public abstract class AcceptingChannel extends SelectableChannel {
|
|
|
|
abstract I2PSocket accept() throws I2PException, ConnectException;
|
|
|
|
protected final I2PSocketManager _socketManager;
|
|
|
|
AcceptingChannel(I2PSocketManager manager) {
|
|
this._socketManager = manager;
|
|
}
|
|
}
|