TCP连接池功能

This commit is contained in:
Administrator
2022-12-11 17:27:03 +08:00
parent 35cccfde4b
commit 5d7324db0e
15 changed files with 948 additions and 619 deletions
@@ -0,0 +1,22 @@
package org.kne.cloud.network.klalb;
import java.awt.Color;
import org.kne.ui.XFrame;
public class KLALBClientGUI extends XFrame{
public KLALBClientGUI() {
setResizable(false);
setTitleColor(new Color(0,0,255,128));
getContentPane().setBackground(new Color(128,128,255,128));
setTitle("KNE云网络负载均衡客户端");
setSize(600,370);
setLocationRelativeTo(null);
setVisible(true);
}
public static void main(String[] args) {
new KLALBClientGUI();
}
}