Loading...
Searching...
No Matches
MqContextC_ReadApi_Block_PY_API

MqContextC - read a block-of-data outof a read-data-packageMore...

+ Collaboration diagram for MqContextC_ReadApi_Block_PY_API:

Functions

static OT_ProcRet py_mqmsgque_MqContextC_ReadL_END (MqContextC_ARGS)
  Python: ctx.ReadL_END() C-API
finish to extract a list-items from the read-data-package. …
 
static OT_ProcRet py_mqmsgque_MqContextC_ReadL_START (MqContextC_ARGS)
  Python: ctx.ReadL_START(?buf:MkBufferC=None?) C-API
start to extract a list-items from the read-data-package. …
 
static OT_ProcRet py_mqmsgque_MqContextC_ReadT_END (MqContextC_ARGS)
  Python: ctx.ReadT_END() C-API
finish to extract a longterm-transaction-item from the read-data-package. …
 
static OT_ProcRet py_mqmsgque_MqContextC_ReadT_START (MqContextC_ARGS)
  Python: ctx.ReadT_START() C-API
start to extract a longterm-transaction-item from the read-data-package. …
 

Detailed Description

MqContextC - read a block-of-data outof a read-data-package

Function Documentation

◆ py_mqmsgque_MqContextC_ReadL_END()

static OT_ProcRet py_mqmsgque_MqContextC_ReadL_END ( MqContextC_ARGS )
static

Python: ctx.ReadL_END() C-API
finish to extract a list-items from the read-data-package. …

Definition at line 2224 of file MqContextC_py.c.

2224 {
2226 OT_SETUP_NOARG(ReadL_END_doc)
2227 OT_CHECK_NOARGS
2228 MkErrorC_Check(hdl,MqReadL_END (hdl));
2229 OT_retObj_SET_None
2230 goto end;
2231 error:
2232 OT_retObj_SET_Error
2233 end:
2235}
#define OT_SETUP_hdl
#define ReadL_END_doc
#define OT_retObj_RETURN
#define error
#define MqReadL_END(...)

◆ py_mqmsgque_MqContextC_ReadL_START()

static OT_ProcRet py_mqmsgque_MqContextC_ReadL_START ( MqContextC_ARGS )
static

Python: ctx.ReadL_START(?buf:MkBufferC=None?) C-API
start to extract a list-items from the read-data-package. …

Definition at line 2238 of file MqContextC_py.c.

2238 {
2240 OT_SETUP_VARARGS(0,1,ReadL_START_doc)
2241 MK_BUF buf = NULL;
2242 OT_CHECK_OPTIONAL(OT_CHECK_BUF (buf,MK_NULL_YES))
2243 OT_CHECK_NOARGS
2244 MkErrorC_Check(hdl,MqReadL_START (hdl, buf));
2245 OT_retObj_SET_None
2246 goto end;
2247 error:
2248 OT_retObj_SET_Error
2249 end:
2251}
#define ReadL_START_doc
#define MK_NULL_YES
#define MqReadL_START(...)

◆ py_mqmsgque_MqContextC_ReadT_END()

static OT_ProcRet py_mqmsgque_MqContextC_ReadT_END ( MqContextC_ARGS )
static

Python: ctx.ReadT_END() C-API
finish to extract a longterm-transaction-item from the read-data-package. …

Definition at line 2254 of file MqContextC_py.c.

2254 {
2256 OT_SETUP_NOARG(ReadT_END_doc)
2257 OT_CHECK_NOARGS
2258 MkErrorC_Check(hdl,MqReadT_END (hdl));
2259 OT_retObj_SET_None
2260 goto end;
2261 error:
2262 OT_retObj_SET_Error
2263 end:
2265}
#define ReadT_END_doc
#define MqReadT_END(...)

◆ py_mqmsgque_MqContextC_ReadT_START()

static OT_ProcRet py_mqmsgque_MqContextC_ReadT_START ( MqContextC_ARGS )
static

Python: ctx.ReadT_START() C-API
start to extract a longterm-transaction-item from the read-data-package. …

Definition at line 2268 of file MqContextC_py.c.

2268 {
2270 OT_SETUP_NOARG(ReadT_START_doc)
2271 OT_CHECK_NOARGS
2272 MkErrorC_Check(hdl,MqReadT_START (hdl));
2273 OT_retObj_SET_None
2274 goto end;
2275 error:
2276 OT_retObj_SET_Error
2277 end:
2279}
#define ReadT_START_doc
#define MqReadT_START(...)