com.davfx.ninio.telnet.TelnetClientHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ninio Show documentation
Show all versions of ninio Show documentation
A Java NIO HTTP client/server as light as possible
package com.davfx.ninio.telnet;
import com.davfx.ninio.common.Closeable;
import com.davfx.ninio.common.Failable;
public interface TelnetClientHandler extends Closeable, Failable {
interface Callback extends Closeable {
void send(String text);
}
void launched(Callback callback);
void received(String text); // May be called with empty text to awake processing
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy