theLink 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard
c - tcl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
MqMsgque_Enum_PY_API

MqMsgque PACKAGE - enum definition … More...

+ Collaboration diagram for MqMsgque_Enum_PY_API:

Functions

static OT_ProcRet pymqmsgque_MqMsgque_IdentE_FromInt (OtClass_ARGS)
  Python: [static] MqIdentE IdentE_FromInt(value:int32) C-API
return the MqIdentE from integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_SlaveE_FromInt (OtClass_ARGS)
  Python: [static] MqSlaveE SlaveE_FromInt(value:int32) C-API
return the MqSlaveE from integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_StartE_FromInt (OtClass_ARGS)
  Python: [static] MqStartE StartE_FromInt(value:int32) C-API
return the MqStartE from integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_StatusIsEF_FromInt (OtClass_ARGS)
  Python: [static] MqStatusIsEF StatusIsEF_FromInt(value:int32) C-API
return the MqStatusIsEF from integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_WaitOnEventE_FromInt (OtClass_ARGS)
  Python: [static] MqWaitOnEventE WaitOnEventE_FromInt(value:int32) C-API
return the MqWaitOnEventE from integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_IdentE_ToInt (OtClass_ARGS)
  Python: [static] int32 IdentE_ToInt(value:MqIdentE) C-API
return the MqIdentE as integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_IdentE_ToString (OtClass_ARGS)
  Python: [static] string IdentE_ToString(value:MqIdentE) C-API
return the MqIdentE as string …
 
static OT_ProcRet pymqmsgque_MqMsgque_SlaveE_ToInt (OtClass_ARGS)
  Python: [static] int32 SlaveE_ToInt(value:MqSlaveE) C-API
return the MqSlaveE as integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_SlaveE_ToString (OtClass_ARGS)
  Python: [static] string SlaveE_ToString(value:MqSlaveE) C-API
return the MqSlaveE as string …
 
static OT_ProcRet pymqmsgque_MqMsgque_StartE_ToInt (OtClass_ARGS)
  Python: [static] int32 StartE_ToInt(value:MqStartE) C-API
return the MqStartE as integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_StartE_ToString (OtClass_ARGS)
  Python: [static] string StartE_ToString(value:MqStartE) C-API
return the MqStartE as string …
 
static OT_ProcRet pymqmsgque_MqMsgque_StatusIsEF_ToInt (OtClass_ARGS)
  Python: [static] int32 StatusIsEF_ToInt(value:MqStatusIsEF) C-API
return the MqStatusIsEF as integer …
 
static OT_ProcRet pymqmsgque_MqMsgque_StatusIsEF_ToString (OtClass_ARGS)
  Python: [static] string StatusIsEF_ToString(value:MqStatusIsEF) C-API
return the MqStatusIsEF as string …
 
static OT_ProcRet pymqmsgque_MqMsgque_WaitOnEventE_ToInt (OtClass_ARGS)
  Python: [static] int32 WaitOnEventE_ToInt(value:MqWaitOnEventE) C-API
return the MqWaitOnEventE as integer …
 
static OT_ProcRet pymqmsgque_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

◆ pymqmsgque_MqMsgque_IdentE_FromInt()

static OT_ProcRet pymqmsgque_MqMsgque_IdentE_FromInt ( OtClass_ARGS )
static

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

Definition at line 219 of file LibMqMsgque_py.c.

219 {
221 OT_SETUP_ONEARG(IdentE_FromInt_doc)
222 MK_I32 value = 0;
223 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
224 OT_CHECK_NOARGS
225 enum MqIdentE value_out;
226 MkErrorC_Check(MK_ERROR_FORMAT,MqIdentE_FromInt (value, &value_out));
227 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(IdentE,value_out))
228 goto end;
229 error:
230 OT_retObj_SET_Error
231 end:
233}
#define OT_SETUP_hdl_static
#define IdentE_FromInt_doc
#define OT_retObj_RETURN
#define error
#define MK_ERROR_FORMAT
signed int MK_I32
enum MkErrorE MqIdentE_FromInt(MK_I32 const value, enum MqIdentE *value_out)
return the MqIdentE from integer …
MqIdentE
identify the application using prefix (default) or factory …

◆ pymqmsgque_MqMsgque_IdentE_ToInt()

static OT_ProcRet pymqmsgque_MqMsgque_IdentE_ToInt ( OtClass_ARGS )
static

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

Definition at line 306 of file LibMqMsgque_py.c.

306 {
308 OT_SETUP_ONEARG(IdentE_ToInt_doc)
309 enum MqIdentE value = 0;
310 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqIdentE,value))
311 OT_CHECK_NOARGS
312 OT_retObj_SET_I32(MqIdentE_ToInt (value))
313 goto end;
314 error:
315 OT_retObj_SET_Error
316 end:
318}
#define IdentE_ToInt_doc
static MK_I32 MqIdentE_ToInt(enum MqIdentE value)
return the MqIdentE as integer …

◆ pymqmsgque_MqMsgque_IdentE_ToString()

static OT_ProcRet pymqmsgque_MqMsgque_IdentE_ToString ( OtClass_ARGS )
static

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

Definition at line 321 of file LibMqMsgque_py.c.

321 {
323 OT_SETUP_ONEARG(IdentE_ToString_doc)
324 enum MqIdentE value = 0;
325 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqIdentE,value))
326 OT_CHECK_NOARGS
327 OT_retObj_SET_STR(MqIdentE_ToString (value))
328 goto end;
329 error:
330 OT_retObj_SET_Error
331 end:
333}
#define IdentE_ToString_doc
MK_STRN MqIdentE_ToString(enum MqIdentE value)
return the MqIdentE as string …

◆ pymqmsgque_MqMsgque_SlaveE_FromInt()

static OT_ProcRet pymqmsgque_MqMsgque_SlaveE_FromInt ( OtClass_ARGS )
static

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

Definition at line 236 of file LibMqMsgque_py.c.

236 {
238 OT_SETUP_ONEARG(SlaveE_FromInt_doc)
239 MK_I32 value = 0;
240 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
241 OT_CHECK_NOARGS
242 enum MqSlaveE value_out;
243 MkErrorC_Check(MK_ERROR_FORMAT,MqSlaveE_FromInt (value, &value_out));
244 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(SlaveE,value_out))
245 goto end;
246 error:
247 OT_retObj_SET_Error
248 end:
250}
#define SlaveE_FromInt_doc
MqSlaveE
predefined slave-id for well known slaves …
enum MkErrorE MqSlaveE_FromInt(MK_I32 const value, enum MqSlaveE *value_out)
return the MqSlaveE from integer …

◆ pymqmsgque_MqMsgque_SlaveE_ToInt()

static OT_ProcRet pymqmsgque_MqMsgque_SlaveE_ToInt ( OtClass_ARGS )
static

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

Definition at line 336 of file LibMqMsgque_py.c.

336 {
338 OT_SETUP_ONEARG(SlaveE_ToInt_doc)
339 enum MqSlaveE value = 0;
340 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqSlaveE,value))
341 OT_CHECK_NOARGS
342 OT_retObj_SET_I32(MqSlaveE_ToInt (value))
343 goto end;
344 error:
345 OT_retObj_SET_Error
346 end:
348}
#define SlaveE_ToInt_doc
static MK_I32 MqSlaveE_ToInt(enum MqSlaveE value)
return the MqSlaveE as integer …

◆ pymqmsgque_MqMsgque_SlaveE_ToString()

static OT_ProcRet pymqmsgque_MqMsgque_SlaveE_ToString ( OtClass_ARGS )
static

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

Definition at line 351 of file LibMqMsgque_py.c.

351 {
353 OT_SETUP_ONEARG(SlaveE_ToString_doc)
354 enum MqSlaveE value = 0;
355 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqSlaveE,value))
356 OT_CHECK_NOARGS
357 OT_retObj_SET_STR(MqSlaveE_ToString (value))
358 goto end;
359 error:
360 OT_retObj_SET_Error
361 end:
363}
#define SlaveE_ToString_doc
MK_STRN MqSlaveE_ToString(enum MqSlaveE value)
return the MqSlaveE as string …

◆ pymqmsgque_MqMsgque_StartE_FromInt()

static OT_ProcRet pymqmsgque_MqMsgque_StartE_FromInt ( OtClass_ARGS )
static

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

Definition at line 253 of file LibMqMsgque_py.c.

253 {
255 OT_SETUP_ONEARG(StartE_FromInt_doc)
256 MK_I32 value = 0;
257 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
258 OT_CHECK_NOARGS
259 enum MqStartE value_out;
260 MkErrorC_Check(MK_ERROR_FORMAT,MqStartE_FromInt (value, &value_out));
261 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(StartE,value_out))
262 goto end;
263 error:
264 OT_retObj_SET_Error
265 end:
267}
#define StartE_FromInt_doc
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.

◆ pymqmsgque_MqMsgque_StartE_ToInt()

static OT_ProcRet pymqmsgque_MqMsgque_StartE_ToInt ( OtClass_ARGS )
static

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

Definition at line 366 of file LibMqMsgque_py.c.

366 {
368 OT_SETUP_ONEARG(StartE_ToInt_doc)
369 enum MqStartE value = 0;
370 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStartE,value))
371 OT_CHECK_NOARGS
372 OT_retObj_SET_I32(MqStartE_ToInt (value))
373 goto end;
374 error:
375 OT_retObj_SET_Error
376 end:
378}
#define StartE_ToInt_doc
static MK_I32 MqStartE_ToInt(enum MqStartE value)
return the MqStartE as integer …

◆ pymqmsgque_MqMsgque_StartE_ToString()

static OT_ProcRet pymqmsgque_MqMsgque_StartE_ToString ( OtClass_ARGS )
static

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

Definition at line 381 of file LibMqMsgque_py.c.

381 {
383 OT_SETUP_ONEARG(StartE_ToString_doc)
384 enum MqStartE value = 0;
385 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStartE,value))
386 OT_CHECK_NOARGS
387 OT_retObj_SET_STR(MqStartE_ToString (value))
388 goto end;
389 error:
390 OT_retObj_SET_Error
391 end:
393}
#define StartE_ToString_doc
MK_STRN MqStartE_ToString(enum MqStartE value)
return the MqStartE as string …

◆ pymqmsgque_MqMsgque_StatusIsEF_FromInt()

static OT_ProcRet pymqmsgque_MqMsgque_StatusIsEF_FromInt ( OtClass_ARGS )
static

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

Definition at line 270 of file LibMqMsgque_py.c.

270 {
272 OT_SETUP_ONEARG(StatusIsEF_FromInt_doc)
273 MK_I32 value = 0;
274 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
275 OT_CHECK_NOARGS
276 enum MqStatusIsEF value_out;
277 MkErrorC_Check(MK_ERROR_FORMAT,MqStatusIsEF_FromInt (value, &value_out));
278 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(StatusIsEF,value_out))
279 goto end;
280 error:
281 OT_retObj_SET_Error
282 end:
284}
#define StatusIsEF_FromInt_doc
MqStatusIsEF
Information about how the context was created.
enum MkErrorE MqStatusIsEF_FromInt(MK_I32 const value, enum MqStatusIsEF *value_out)
return the MqStatusIsEF from integer …

◆ pymqmsgque_MqMsgque_StatusIsEF_ToInt()

static OT_ProcRet pymqmsgque_MqMsgque_StatusIsEF_ToInt ( OtClass_ARGS )
static

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

Definition at line 396 of file LibMqMsgque_py.c.

396 {
398 OT_SETUP_ONEARG(StatusIsEF_ToInt_doc)
399 enum MqStatusIsEF value = 0;
400 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStatusIsEF,value))
401 OT_CHECK_NOARGS
402 OT_retObj_SET_I32(MqStatusIsEF_ToInt (value))
403 goto end;
404 error:
405 OT_retObj_SET_Error
406 end:
408}
#define StatusIsEF_ToInt_doc
static MK_I32 MqStatusIsEF_ToInt(enum MqStatusIsEF value)
return the MqStatusIsEF as integer …

◆ pymqmsgque_MqMsgque_StatusIsEF_ToString()

static OT_ProcRet pymqmsgque_MqMsgque_StatusIsEF_ToString ( OtClass_ARGS )
static

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

Definition at line 411 of file LibMqMsgque_py.c.

411 {
413 OT_SETUP_ONEARG(StatusIsEF_ToString_doc)
414 enum MqStatusIsEF value = 0;
415 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStatusIsEF,value))
416 OT_CHECK_NOARGS
417 OT_retObj_SET_STR(MqStatusIsEF_ToString (value))
418 goto end;
419 error:
420 OT_retObj_SET_Error
421 end:
423}
#define StatusIsEF_ToString_doc
MK_STRN MqStatusIsEF_ToString(enum MqStatusIsEF value)
return the MqStatusIsEF as string …

◆ pymqmsgque_MqMsgque_WaitOnEventE_FromInt()

static OT_ProcRet pymqmsgque_MqMsgque_WaitOnEventE_FromInt ( OtClass_ARGS )
static

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

Definition at line 287 of file LibMqMsgque_py.c.

287 {
289 OT_SETUP_ONEARG(WaitOnEventE_FromInt_doc)
290 MK_I32 value = 0;
291 OT_CHECK_REQUIRED(OT_CHECK_NI4 (value))
292 OT_CHECK_NOARGS
293 enum MqWaitOnEventE value_out;
294 MkErrorC_Check(MK_ERROR_FORMAT,MqWaitOnEventE_FromInt (value, &value_out));
295 OT_retObj_SET(OT_NEW_Mq_enum_OBJ(WaitOnEventE,value_out))
296 goto end;
297 error:
298 OT_retObj_SET_Error
299 end:
301}
#define WaitOnEventE_FromInt_doc
MqWaitOnEventE
wait for an event? …
enum MkErrorE MqWaitOnEventE_FromInt(MK_I32 const value, enum MqWaitOnEventE *value_out)
return the MqWaitOnEventE from integer …

◆ pymqmsgque_MqMsgque_WaitOnEventE_ToInt()

static OT_ProcRet pymqmsgque_MqMsgque_WaitOnEventE_ToInt ( OtClass_ARGS )
static

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

Definition at line 426 of file LibMqMsgque_py.c.

426 {
428 OT_SETUP_ONEARG(WaitOnEventE_ToInt_doc)
429 enum MqWaitOnEventE value = 0;
430 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqWaitOnEventE,value))
431 OT_CHECK_NOARGS
432 OT_retObj_SET_I32(MqWaitOnEventE_ToInt (value))
433 goto end;
434 error:
435 OT_retObj_SET_Error
436 end:
438}
#define WaitOnEventE_ToInt_doc
static MK_I32 MqWaitOnEventE_ToInt(enum MqWaitOnEventE value)
return the MqWaitOnEventE as integer …

◆ pymqmsgque_MqMsgque_WaitOnEventE_ToString()

static OT_ProcRet pymqmsgque_MqMsgque_WaitOnEventE_ToString ( OtClass_ARGS )
static

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

Definition at line 441 of file LibMqMsgque_py.c.

441 {
443 OT_SETUP_ONEARG(WaitOnEventE_ToString_doc)
444 enum MqWaitOnEventE value = 0;
445 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqWaitOnEventE,value))
446 OT_CHECK_NOARGS
447 OT_retObj_SET_STR(MqWaitOnEventE_ToString (value))
448 goto end;
449 error:
450 OT_retObj_SET_Error
451 end:
453}
#define WaitOnEventE_ToString_doc
MK_STRN MqWaitOnEventE_ToString(enum MqWaitOnEventE value)
return the MqWaitOnEventE as string …