koncept.io.StreamingSocketAcceptor Maven / Gradle / Ivy
package koncept.io;
import java.io.Closeable;
import java.io.IOException;
public interface StreamingSocketAcceptor extends Closeable {
@Deprecated
public T underlying();
public StreamingSocketConnection accept() throws SocketClosedException, IOException;
public static class SocketClosedException extends IOException {
public SocketClosedException(String message, Throwable cause) {
super(message, cause);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy