theLink 10.0
Loading...
Searching...
No Matches
MqContextC_ReadApi_Block_CS_API

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

+ Collaboration diagram for MqContextC_ReadApi_Block_CS_API:

Functions

void csmqmsgque.MqContextC.ReadL_END ()
  C#: ctx.ReadL_END() C-API
finish to extract a list-items from the read-data-package. …
 
void csmqmsgque.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 csmqmsgque.MqContextC.ReadT_END ()
  C#: ctx.ReadT_END() C-API
finish to extract a longterm-transaction-item from the read-data-package. …
 
void csmqmsgque.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 csmqmsgque.MqContextC.ReadL_END ( )
inline

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

Definition at line 1136 of file MqContextC.cs.

1136 {
1137 MkErrorE errVal = Mq.MqReadL_END(mkrt, hdl);
1138 MkErrorC.Check(hdl, errVal);
1139 }
csmqmsgque.MqMsgque Mq
static void Check(IntPtr ctx, MkErrorE err)
MkErrorE

◆ ReadL_START()

void csmqmsgque.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 1142 of file MqContextC.cs.

1142 {
1143 IntPtr buf_hdl = MkBufferC.getOBJ_null_allow(buf);
1144 MkErrorE errVal = Mq.MqReadL_START(mkrt, hdl, buf_hdl);
1145 MkErrorC.Check(hdl, errVal);
1146 }

◆ ReadT_END()

void csmqmsgque.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 1149 of file MqContextC.cs.

1149 {
1150 MkErrorE errVal = Mq.MqReadT_END(mkrt, hdl);
1151 MkErrorC.Check(hdl, errVal);
1152 }

◆ ReadT_START()

void csmqmsgque.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 1155 of file MqContextC.cs.

1155 {
1156 MkErrorE errVal = Mq.MqReadT_START(mkrt, hdl);
1157 MkErrorC.Check(hdl, errVal);
1158 }