18.3.27. pmix_group_opt_t
pmix_group_opt_t — Response to a PMIx group invitation
18.3.27.1. SYNTAX
18.3.27.1.1. C Syntax
#include <pmix_common.h>
typedef enum {
PMIX_GROUP_DECLINE,
PMIX_GROUP_ACCEPT
} pmix_group_opt_t;
18.3.27.1.2. Python Syntax
from pmix import *
opt = PMIX_GROUP_ACCEPT
where opt is one of the pmix_group_opt_t enumerated values.
18.3.27.2. DESCRIPTION
The pmix_group_opt_t enumeration defines the values used to indicate acceptance or declination of an invitation to join a PMIx group. The type exists primarily for the readability of user code responding to a group invitation. The defined values are:
PMIX_GROUP_DECLINE(value 0) — decline the invitation.PMIX_GROUP_ACCEPT(value 1) — accept the invitation.
See also