ホーム › Networking.Clustering › CLUSTER_NODE_STATE
CLUSTER_NODE_STATE
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| ClusterNodeStateUnknown | -1 | 0xFFFFFFFF |
| ClusterNodeUp | 0 | 0x0 |
| ClusterNodeDown | 1 | 0x1 |
| ClusterNodePaused | 2 | 0x2 |
| ClusterNodeJoining | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum CLUSTER_NODE_STATE : int {
ClusterNodeStateUnknown = -1,
ClusterNodeUp = 0,
ClusterNodeDown = 1,
ClusterNodePaused = 2,
ClusterNodeJoining = 3
} CLUSTER_NODE_STATE;public enum CLUSTER_NODE_STATE : int
{
ClusterNodeStateUnknown = -1,
ClusterNodeUp = 0,
ClusterNodeDown = 1,
ClusterNodePaused = 2,
ClusterNodeJoining = 3,
}Public Enum CLUSTER_NODE_STATE As Integer
ClusterNodeStateUnknown = -1
ClusterNodeUp = 0
ClusterNodeDown = 1
ClusterNodePaused = 2
ClusterNodeJoining = 3
End Enumimport enum
class CLUSTER_NODE_STATE(enum.IntEnum):
ClusterNodeStateUnknown = -1
ClusterNodeUp = 0
ClusterNodeDown = 1
ClusterNodePaused = 2
ClusterNodeJoining = 3// CLUSTER_NODE_STATE
pub const ClusterNodeStateUnknown: i32 = -1;
pub const ClusterNodeUp: i32 = 0;
pub const ClusterNodeDown: i32 = 1;
pub const ClusterNodePaused: i32 = 2;
pub const ClusterNodeJoining: i32 = 3;// CLUSTER_NODE_STATE
const (
ClusterNodeStateUnknown int32 = -1
ClusterNodeUp int32 = 0
ClusterNodeDown int32 = 1
ClusterNodePaused int32 = 2
ClusterNodeJoining int32 = 3
)const
ClusterNodeStateUnknown = -1;
ClusterNodeUp = 0;
ClusterNodeDown = 1;
ClusterNodePaused = 2;
ClusterNodeJoining = 3;// CLUSTER_NODE_STATE
pub const ClusterNodeStateUnknown: i32 = -1;
pub const ClusterNodeUp: i32 = 0;
pub const ClusterNodeDown: i32 = 1;
pub const ClusterNodePaused: i32 = 2;
pub const ClusterNodeJoining: i32 = 3;const
ClusterNodeStateUnknown* = -1
ClusterNodeUp* = 0
ClusterNodeDown* = 1
ClusterNodePaused* = 2
ClusterNodeJoining* = 3enum CLUSTER_NODE_STATE : int {
ClusterNodeStateUnknown = -1,
ClusterNodeUp = 0,
ClusterNodeDown = 1,
ClusterNodePaused = 2,
ClusterNodeJoining = 3,
}#define global ClusterNodeStateUnknown 0xFFFFFFFF
#define global ClusterNodeUp 0x0
#define global ClusterNodeDown 0x1
#define global ClusterNodePaused 0x2
#define global ClusterNodeJoining 0x3