Hazelcast C++ Client
Hazelcast C++ Client Library
Loading...
Searching...
No Matches
hazelcast::cp::raft_group_id Struct Reference

Public Member Functions

bool operator== (const raft_group_id &rhs) const
bool operator!= (const raft_group_id &rhs) const

Public Attributes

std::string name
int64_t seed
int64_t group_id

Detailed Description

Definition at line 41 of file cp.h.

Member Function Documentation

◆ operator!=()

bool hazelcast::cp::raft_group_id::operator!= ( const raft_group_id & rhs) const

Definition at line 507 of file cp.cpp.

508{
509 return !(rhs == *this);
510}

◆ operator==()

bool hazelcast::cp::raft_group_id::operator== ( const raft_group_id & rhs) const

Definition at line 501 of file cp.cpp.

502{
503 return name == rhs.name && seed == rhs.seed && group_id == rhs.group_id;
504}

Member Data Documentation

◆ group_id

int64_t hazelcast::cp::raft_group_id::group_id

Definition at line 45 of file cp.h.

◆ name

std::string hazelcast::cp::raft_group_id::name

Definition at line 43 of file cp.h.

◆ seed

int64_t hazelcast::cp::raft_group_id::seed

Definition at line 44 of file cp.h.


The documentation for this struct was generated from the following files:
  • hazelcast/include/hazelcast/cp/cp.h
  • hazelcast/src/hazelcast/cp/cp.cpp