package com.xcong.excoin.modules.okxNewPrice; public class OkxWebSocketClientMain { public static void main(String[] args) throws InterruptedException { OkxQuantWebSocketClient clientV2 = new OkxQuantWebSocketClient(); // 手动调用初始化方法 clientV2.init(); // 运行一段时间以观察结果 Thread.sleep(1200000000L); // 运行一小时 // 关闭连接 clientV2.destroy(); } }