This commit is contained in:
Administrator
2024-08-18 17:47:11 +08:00
parent e4f4c77c19
commit e243203535
121 changed files with 7499 additions and 2169 deletions
@@ -5,9 +5,14 @@ import java.net.SocketException;
public interface KLALBPacketLink {
public void writePacket(KLALBPacket kp) throws IOException;
public void flush() throws IOException;
public KLALBPacket readPacket()throws IOException;
public void close() throws IOException;
public boolean isClosed();
public void setSoTimeout(int val) throws SocketException;
public int getSoTimeout() throws SocketException;
@Override
public String toString();
public boolean isStream();
}