KLALB 3.6.0开发一半的状态

This commit is contained in:
2026-07-06 17:03:27 +08:00
parent 620afef715
commit c8b183da71
90 changed files with 1963 additions and 3757 deletions
@@ -0,0 +1,12 @@
package org.kne.cloud.network.klalb;
import java.net.InetAddress;
import java.util.function.Consumer;
public interface BindableConsumer<T> extends Consumer<T> {
public InetAddress getRemoteInetAddress() ;
public InetAddress getLocalInetAddress() ;
public int getPort() ;
public int getLocalPort();
public void setLocalPort(int i);
}