theLink 10.0
Loading...
Searching...
No Matches
MqContextC_ReadApi_Block_CC_API

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

+ Collaboration diagram for MqContextC_ReadApi_Block_CC_API:

Functions

void ccmqmsgque::MqContextC::ReadL_END ()
  C++: ctx.ReadL_END() C-API
finish to extract a list-items from the read-data-package. …
 
void ccmqmsgque::MqContextC::ReadL_START (MkBufferC *buf=NULL)
  C++: ctx.ReadL_START(MkBufferC* buf = NULL) C-API
start to extract a list-items from the read-data-package. …
 
void ccmqmsgque::MqContextC::ReadL_START (const MkBufferC &buf)
  C++: ctx.ReadL_START(MkBufferC* buf = NULL) C-API
start to extract a list-items from the read-data-package. …
 
void ccmqmsgque::MqContextC::ReadT_END ()
  C++: ctx.ReadT_END() C-API
finish to extract a longterm-transaction-item from the read-data-package. …
 
void ccmqmsgque::MqContextC::ReadT_START ()
  C++: 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

◆ ReadL_END()

void ccmqmsgque::MqContextC::ReadL_END ( )
inline

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

Definition at line 1237 of file MqContextC_inline_cc.hh.

1237 {
1238 MK_UNUSED auto ctx = getCTX();
1239 enum MkErrorE errVal = MqReadL_END(ctx);
1240 MkErrorC_Check(ctx, errVal);
1241 }
#define MK_UNUSED
MQ_CTX getCTX() const
return the LibMsgqueObject from current MqContextC instance
#define MqReadL_END(...)

◆ ReadL_START() [1/2]

void ccmqmsgque::MqContextC::ReadL_START ( const MkBufferC & buf)
inline

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

Definition at line 1252 of file MqContextC_inline_cc.hh.

1252 {
1253 MK_UNUSED auto ctx = getCTX();
1254 const MK_BUF buf_hdl = MkBufferC::getBUF(buf);
1255 enum MkErrorE errVal = MqReadL_START(ctx, buf_hdl);
1256 MkErrorC_Check(ctx, errVal);
1257 }
MK_BUF getBUF() const
struct MkBufferS * MK_BUF
#define MqReadL_START(...)

◆ ReadL_START() [2/2]

void ccmqmsgque::MqContextC::ReadL_START ( MkBufferC * buf = NULL)
inline

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

Definition at line 1244 of file MqContextC_inline_cc.hh.

1244 {
1245 MK_UNUSED auto ctx = getCTX();
1247 enum MkErrorE errVal = MqReadL_START(ctx, buf_hdl);
1248 MkErrorC_Check(ctx, errVal);
1249 }
MK_BUF getBUF__null_allow() const

◆ ReadT_END()

void ccmqmsgque::MqContextC::ReadT_END ( )
inline

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

Definition at line 1260 of file MqContextC_inline_cc.hh.

1260 {
1261 MK_UNUSED auto ctx = getCTX();
1262 enum MkErrorE errVal = MqReadT_END(ctx);
1263 MkErrorC_Check(ctx, errVal);
1264 }
#define MqReadT_END(...)

◆ ReadT_START()

void ccmqmsgque::MqContextC::ReadT_START ( )
inline

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

Definition at line 1267 of file MqContextC_inline_cc.hh.

1267 {
1268 MK_UNUSED auto ctx = getCTX();
1269 enum MkErrorE errVal = MqReadT_START(ctx);
1270 MkErrorC_Check(ctx, errVal);
1271 }
#define MqReadT_START(...)