/** * @author ������ * @version 1.0 * @created 26-10��-2025 23:19:03 */ public class SocketPlugin implements CommunicationPlugin { public SocketPlugin(){ } public void finalize() throws Throwable { } /** * * @param content */ @Override public boolean send(String content){ System.out.println("Socket发送内容: " + content); return true; } }//end SocketPlugin