com.moomoo.openapi.ConnErr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moomoo-api Show documentation
Show all versions of moomoo-api Show documentation
Moomoo OpenAPI quantitative transaction interface for Java.
The newest version!
package com.moomoo.openapi;
/**
* 连接错误类型
*/
public enum ConnErr {
/**
* 没有错误
*/
OK,
/**
* 连接失败
*/
CONNECT_FAIL,
/**
* 连接超时
*/
CONNECT_TIMEOUT,
/**
* 发送失败
*/
SEND_FAIL,
/**
* 接收失败
*/
READ_FAIL,
/**
* 主动关闭
*/
CLOSE,
/**
* 远端已关闭
*/
REMOTE_CLOSE
}