Loading...
Searching...
No Matches
MqMsgque_Enum_PY_API

MqMsgque PACKAGE - enum definition … More...

+ Collaboration diagram for MqMsgque_Enum_PY_API:

Functions

static OT_ProcRet py_mqmsgque_MqMsgque_IdentE_FromInt (OtClass_ARGS)
  Python: [static] MqIdentE IdentE_FromInt(value:int32) C-API
return the MqIdentE from integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_SlaveE_FromInt (OtClass_ARGS)
  Python: [static] MqSlaveE SlaveE_FromInt(value:int32) C-API
return the MqSlaveE from integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_StartE_FromInt (OtClass_ARGS)
  Python: [static] MqStartE StartE_FromInt(value:int32) C-API
return the MqStartE from integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_StatusIsEF_FromInt (OtClass_ARGS)
  Python: [static] MqStatusIsEF StatusIsEF_FromInt(value:int32) C-API
return the MqStatusIsEF from integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_WaitOnEventE_FromInt (OtClass_ARGS)
  Python: [static] MqWaitOnEventE WaitOnEventE_FromInt(value:int32) C-API
return the MqWaitOnEventE from integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_IdentE_ToInt (OtClass_ARGS)
  Python: [static] int32 IdentE_ToInt(value:MqIdentE) C-API
return the MqIdentE as integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_IdentE_ToString (OtClass_ARGS)
  Python: [static] string IdentE_ToString(value:MqIdentE) C-API
return the MqIdentE as string …
 
static OT_ProcRet py_mqmsgque_MqMsgque_SlaveE_ToInt (OtClass_ARGS)
  Python: [static] int32 SlaveE_ToInt(value:MqSlaveE) C-API
return the MqSlaveE as integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_SlaveE_ToString (OtClass_ARGS)
  Python: [static] string SlaveE_ToString(value:MqSlaveE) C-API
return the MqSlaveE as string …
 
static OT_ProcRet py_mqmsgque_MqMsgque_StartE_ToInt (OtClass_ARGS)
  Python: [static] int32 StartE_ToInt(value:MqStartE) C-API
return the MqStartE as integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_StartE_ToString (OtClass_ARGS)
  Python: [static] string StartE_ToString(value:MqStartE) C-API
return the MqStartE as string …
 
static OT_ProcRet py_mqmsgque_MqMsgque_StatusIsEF_ToInt (OtClass_ARGS)
  Python: [static] int32 StatusIsEF_ToInt(value:MqStatusIsEF) C-API
return the MqStatusIsEF as integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_StatusIsEF_ToString (OtClass_ARGS)
  Python: [static] string StatusIsEF_ToString(value:MqStatusIsEF) C-API
return the MqStatusIsEF as string …
 
static OT_ProcRet py_mqmsgque_MqMsgque_WaitOnEventE_ToInt (OtClass_ARGS)
  Python: [static] int32 WaitOnEventE_ToInt(value:MqWaitOnEventE) C-API
return the MqWaitOnEventE as integer …
 
static OT_ProcRet py_mqmsgque_MqMsgque_WaitOnEventE_ToString (OtClass_ARGS)
  Python: [static] string WaitOnEventE_ToString(value:MqWaitOnEventE) C-API
return the MqWaitOnEventE as string …
 

Detailed Description

MqMsgque PACKAGE - enum definition …

Method definition

read more at: MkKernel_Enum_C_API

Function Documentation

◆ py_mqmsgque_MqMsgque_IdentE_FromInt()

static OT_ProcRet py_mqmsgque_MqMsgque_IdentE_FromInt ( OtClass_ARGS )
static

Python: [static] MqIdentE IdentE_FromInt(value:int32) C-API
return the MqIdentE from integer …

Definition at line 227 of file LibMqMsgque_py.c.

227 {
229 OT_SETUP_ONEARG(IdentE_FromInt_doc)
230 MK_I32 value = 0;
231 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
232 OT_CHECK_NOARGS
233 enum MqIdentE value_out;
234 MkErrorC_Check(MK_ERROR_FORMAT,MqIdentE_FromInt (value, &value_out));
235 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(IdentE,value_out))
236 goto end;
237 error:
238 OT_retObj_SET_Error
239 end:
241}
#define OT_SETUP_hdl_static
#define IdentE_FromInt_doc
#define OT_retObj_RETURN
#define error
#define MK_ERROR_FORMAT
signed int MK_I32
MqIdentE
identify the application using prefix (default) or factory …
MQ_EXTERN enum MkErrorE MqIdentE_FromInt(MK_I32 const value, enum MqIdentE *value_out)
return the MqIdentE from integer …

◆ py_mqmsgque_MqMsgque_IdentE_ToInt()

static OT_ProcRet py_mqmsgque_MqMsgque_IdentE_ToInt ( OtClass_ARGS )
static

Python: [static] int32 IdentE_ToInt(value:MqIdentE) C-API
return the MqIdentE as integer …

Definition at line 314 of file LibMqMsgque_py.c.

314 {
316 OT_SETUP_ONEARG(IdentE_ToInt_doc)
317 enum MqIdentE value = 0;
318 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqIdentE,value))
319 OT_CHECK_NOARGS
320 OT_retObj_SET_I32(MqIdentE_ToInt (value))
321 goto end;
322 error:
323 OT_retObj_SET_Error
324 end:
326}
#define IdentE_ToInt_doc
MK_I32 MqIdentE_ToInt(enum MqIdentE value)
return the MqIdentE as integer …

◆ py_mqmsgque_MqMsgque_IdentE_ToString()

static OT_ProcRet py_mqmsgque_MqMsgque_IdentE_ToString ( OtClass_ARGS )
static

Python: [static] string IdentE_ToString(value:MqIdentE) C-API
return the MqIdentE as string …

Definition at line 329 of file LibMqMsgque_py.c.

329 {
331 OT_SETUP_ONEARG(IdentE_ToString_doc)
332 enum MqIdentE value = 0;
333 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqIdentE,value))
334 OT_CHECK_NOARGS
335 OT_retObj_SET_STR(MqIdentE_ToString (value))
336 goto end;
337 error:
338 OT_retObj_SET_Error
339 end:
341}
#define IdentE_ToString_doc
MQ_EXTERN MK_STRN MqIdentE_ToString(enum MqIdentE value)
return the MqIdentE as string …

◆ py_mqmsgque_MqMsgque_SlaveE_FromInt()

static OT_ProcRet py_mqmsgque_MqMsgque_SlaveE_FromInt ( OtClass_ARGS )
static

Python: [static] MqSlaveE SlaveE_FromInt(value:int32) C-API
return the MqSlaveE from integer …

Definition at line 244 of file LibMqMsgque_py.c.

244 {
246 OT_SETUP_ONEARG(SlaveE_FromInt_doc)
247 MK_I32 value = 0;
248 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
249 OT_CHECK_NOARGS
250 enum MqSlaveE value_out;
251 MkErrorC_Check(MK_ERROR_FORMAT,MqSlaveE_FromInt (value, &value_out));
252 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(SlaveE,value_out))
253 goto end;
254 error:
255 OT_retObj_SET_Error
256 end:
258}
#define SlaveE_FromInt_doc
MqSlaveE
predefined slave-id for well known slaves …
MQ_EXTERN enum MkErrorE MqSlaveE_FromInt(MK_I32 const value, enum MqSlaveE *value_out)
return the MqSlaveE from integer …

◆ py_mqmsgque_MqMsgque_SlaveE_ToInt()

static OT_ProcRet py_mqmsgque_MqMsgque_SlaveE_ToInt ( OtClass_ARGS )
static

Python: [static] int32 SlaveE_ToInt(value:MqSlaveE) C-API
return the MqSlaveE as integer …

Definition at line 344 of file LibMqMsgque_py.c.

344 {
346 OT_SETUP_ONEARG(SlaveE_ToInt_doc)
347 enum MqSlaveE value = 0;
348 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqSlaveE,value))
349 OT_CHECK_NOARGS
350 OT_retObj_SET_I32(MqSlaveE_ToInt (value))
351 goto end;
352 error:
353 OT_retObj_SET_Error
354 end:
356}
#define SlaveE_ToInt_doc
MK_I32 MqSlaveE_ToInt(enum MqSlaveE value)
return the MqSlaveE as integer …

◆ py_mqmsgque_MqMsgque_SlaveE_ToString()

static OT_ProcRet py_mqmsgque_MqMsgque_SlaveE_ToString ( OtClass_ARGS )
static

Python: [static] string SlaveE_ToString(value:MqSlaveE) C-API
return the MqSlaveE as string …

Definition at line 359 of file LibMqMsgque_py.c.

359 {
361 OT_SETUP_ONEARG(SlaveE_ToString_doc)
362 enum MqSlaveE value = 0;
363 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqSlaveE,value))
364 OT_CHECK_NOARGS
365 OT_retObj_SET_STR(MqSlaveE_ToString (value))
366 goto end;
367 error:
368 OT_retObj_SET_Error
369 end:
371}
#define SlaveE_ToString_doc
MQ_EXTERN MK_STRN MqSlaveE_ToString(enum MqSlaveE value)
return the MqSlaveE as string …

◆ py_mqmsgque_MqMsgque_StartE_FromInt()

static OT_ProcRet py_mqmsgque_MqMsgque_StartE_FromInt ( OtClass_ARGS )
static

Python: [static] MqStartE StartE_FromInt(value:int32) C-API
return the MqStartE from integer …

Definition at line 261 of file LibMqMsgque_py.c.

261 {
263 OT_SETUP_ONEARG(StartE_FromInt_doc)
264 MK_I32 value = 0;
265 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
266 OT_CHECK_NOARGS
267 enum MqStartE value_out;
268 MkErrorC_Check(MK_ERROR_FORMAT,MqStartE_FromInt (value, &value_out));
269 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(StartE,value_out))
270 goto end;
271 error:
272 OT_retObj_SET_Error
273 end:
275}
#define StartE_FromInt_doc
MQ_EXTERN enum MkErrorE MqStartE_FromInt(MK_I32 const value, enum MqStartE *value_out)
return the MqStartE from integer …
MqStartE
User preferences on HOWTO start a new entity.

◆ py_mqmsgque_MqMsgque_StartE_ToInt()

static OT_ProcRet py_mqmsgque_MqMsgque_StartE_ToInt ( OtClass_ARGS )
static

Python: [static] int32 StartE_ToInt(value:MqStartE) C-API
return the MqStartE as integer …

Definition at line 374 of file LibMqMsgque_py.c.

374 {
376 OT_SETUP_ONEARG(StartE_ToInt_doc)
377 enum MqStartE value = 0;
378 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStartE,value))
379 OT_CHECK_NOARGS
380 OT_retObj_SET_I32(MqStartE_ToInt (value))
381 goto end;
382 error:
383 OT_retObj_SET_Error
384 end:
386}
#define StartE_ToInt_doc
MK_I32 MqStartE_ToInt(enum MqStartE value)
return the MqStartE as integer …

◆ py_mqmsgque_MqMsgque_StartE_ToString()

static OT_ProcRet py_mqmsgque_MqMsgque_StartE_ToString ( OtClass_ARGS )
static

Python: [static] string StartE_ToString(value:MqStartE) C-API
return the MqStartE as string …

Definition at line 389 of file LibMqMsgque_py.c.

389 {
391 OT_SETUP_ONEARG(StartE_ToString_doc)
392 enum MqStartE value = 0;
393 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStartE,value))
394 OT_CHECK_NOARGS
395 OT_retObj_SET_STR(MqStartE_ToString (value))
396 goto end;
397 error:
398 OT_retObj_SET_Error
399 end:
401}
#define StartE_ToString_doc
MQ_EXTERN MK_STRN MqStartE_ToString(enum MqStartE value)
return the MqStartE as string …

◆ py_mqmsgque_MqMsgque_StatusIsEF_FromInt()

static OT_ProcRet py_mqmsgque_MqMsgque_StatusIsEF_FromInt ( OtClass_ARGS )
static

Python: [static] MqStatusIsEF StatusIsEF_FromInt(value:int32) C-API
return the MqStatusIsEF from integer …

Definition at line 278 of file LibMqMsgque_py.c.

278 {
280 OT_SETUP_ONEARG(StatusIsEF_FromInt_doc)
281 MK_I32 value = 0;
282 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
283 OT_CHECK_NOARGS
284 enum MqStatusIsEF value_out;
285 MkErrorC_Check(MK_ERROR_FORMAT,MqStatusIsEF_FromInt (value, &value_out));
286 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(StatusIsEF,value_out))
287 goto end;
288 error:
289 OT_retObj_SET_Error
290 end:
292}
#define StatusIsEF_FromInt_doc
MQ_EXTERN enum MkErrorE MqStatusIsEF_FromInt(MK_I32 const value, enum MqStatusIsEF *value_out)
return the MqStatusIsEF from integer …
MqStatusIsEF
Information about how the context was created.

◆ py_mqmsgque_MqMsgque_StatusIsEF_ToInt()

static OT_ProcRet py_mqmsgque_MqMsgque_StatusIsEF_ToInt ( OtClass_ARGS )
static

Python: [static] int32 StatusIsEF_ToInt(value:MqStatusIsEF) C-API
return the MqStatusIsEF as integer …

Definition at line 404 of file LibMqMsgque_py.c.

404 {
406 OT_SETUP_ONEARG(StatusIsEF_ToInt_doc)
407 enum MqStatusIsEF value = 0;
408 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStatusIsEF,value))
409 OT_CHECK_NOARGS
410 OT_retObj_SET_I32(MqStatusIsEF_ToInt (value))
411 goto end;
412 error:
413 OT_retObj_SET_Error
414 end:
416}
#define StatusIsEF_ToInt_doc
MK_I32 MqStatusIsEF_ToInt(enum MqStatusIsEF value)
return the MqStatusIsEF as integer …

◆ py_mqmsgque_MqMsgque_StatusIsEF_ToString()

static OT_ProcRet py_mqmsgque_MqMsgque_StatusIsEF_ToString ( OtClass_ARGS )
static

Python: [static] string StatusIsEF_ToString(value:MqStatusIsEF) C-API
return the MqStatusIsEF as string …

Definition at line 419 of file LibMqMsgque_py.c.

419 {
421 OT_SETUP_ONEARG(StatusIsEF_ToString_doc)
422 enum MqStatusIsEF value = 0;
423 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStatusIsEF,value))
424 OT_CHECK_NOARGS
425 OT_retObj_SET_STR(MqStatusIsEF_ToString (value))
426 goto end;
427 error:
428 OT_retObj_SET_Error
429 end:
431}
#define StatusIsEF_ToString_doc
MQ_EXTERN MK_STRN MqStatusIsEF_ToString(enum MqStatusIsEF value)
return the MqStatusIsEF as string …

◆ py_mqmsgque_MqMsgque_WaitOnEventE_FromInt()

static OT_ProcRet py_mqmsgque_MqMsgque_WaitOnEventE_FromInt ( OtClass_ARGS )
static

Python: [static] MqWaitOnEventE WaitOnEventE_FromInt(value:int32) C-API
return the MqWaitOnEventE from integer …

Definition at line 295 of file LibMqMsgque_py.c.

295 {
297 OT_SETUP_ONEARG(WaitOnEventE_FromInt_doc)
298 MK_I32 value = 0;
299 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
300 OT_CHECK_NOARGS
301 enum MqWaitOnEventE value_out;
302 MkErrorC_Check(MK_ERROR_FORMAT,MqWaitOnEventE_FromInt (value, &value_out));
303 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(WaitOnEventE,value_out))
304 goto end;
305 error:
306 OT_retObj_SET_Error
307 end:
309}
#define WaitOnEventE_FromInt_doc
MqWaitOnEventE
wait for an event? …
MQ_EXTERN enum MkErrorE MqWaitOnEventE_FromInt(MK_I32 const value, enum MqWaitOnEventE *value_out)
return the MqWaitOnEventE from integer …

◆ py_mqmsgque_MqMsgque_WaitOnEventE_ToInt()

static OT_ProcRet py_mqmsgque_MqMsgque_WaitOnEventE_ToInt ( OtClass_ARGS )
static

Python: [static] int32 WaitOnEventE_ToInt(value:MqWaitOnEventE) C-API
return the MqWaitOnEventE as integer …

Definition at line 434 of file LibMqMsgque_py.c.

434 {
436 OT_SETUP_ONEARG(WaitOnEventE_ToInt_doc)
437 enum MqWaitOnEventE value = 0;
438 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqWaitOnEventE,value))
439 OT_CHECK_NOARGS
440 OT_retObj_SET_I32(MqWaitOnEventE_ToInt (value))
441 goto end;
442 error:
443 OT_retObj_SET_Error
444 end:
446}
#define WaitOnEventE_ToInt_doc
MK_I32 MqWaitOnEventE_ToInt(enum MqWaitOnEventE value)
return the MqWaitOnEventE as integer …

◆ py_mqmsgque_MqMsgque_WaitOnEventE_ToString()

static OT_ProcRet py_mqmsgque_MqMsgque_WaitOnEventE_ToString ( OtClass_ARGS )
static

Python: [static] string WaitOnEventE_ToString(value:MqWaitOnEventE) C-API
return the MqWaitOnEventE as string …

Definition at line 449 of file LibMqMsgque_py.c.

449 {
451 OT_SETUP_ONEARG(WaitOnEventE_ToString_doc)
452 enum MqWaitOnEventE value = 0;
453 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqWaitOnEventE,value))
454 OT_CHECK_NOARGS
455 OT_retObj_SET_STR(MqWaitOnEventE_ToString (value))
456 goto end;
457 error:
458 OT_retObj_SET_Error
459 end:
461}
#define WaitOnEventE_ToString_doc
MQ_EXTERN MK_STRN MqWaitOnEventE_ToString(enum MqWaitOnEventE value)
return the MqWaitOnEventE as string …