1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| 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();
|
| }
| }
|
|