theLink 10.0
Loading...
Searching...
No Matches
MqContextC_ReadApi_Misc_CS_API

MqContextC - various functions to work on a read-data-packageMore...

+ Collaboration diagram for MqContextC_ReadApi_Misc_CS_API:

Functions

void csmqmsgque.MqContextC.ReadDbg ()
 ReadDbg
 
MkTypeE csmqmsgque.MqContextC.ReadGetNextType ()
  C#: MkTypeE ctx.ReadGetNextType() C-API
get the type (MkTypeE) of the next Item in the read-data-buffer or "0" if not available
 
int csmqmsgque.MqContextC.ReadGetNumItems ()
  C#: int ctx.ReadGetNumItems() C-API
get the number of items left in the read-data-package
 
bool csmqmsgque.MqContextC.ReadItemExists ()
  C#: bool ctx.ReadItemExists() C-API
check if an item exists in the read-data-package
 
void csmqmsgque.MqContextC.ReadUndo ()
  C#: ctx.ReadUndo() C-API
undo the last MqContextC READ API function call …
 

Detailed Description

MqContextC - various functions to work on a read-data-package

Function Documentation

◆ ReadDbg()

void csmqmsgque.MqContextC.ReadDbg ( )
inline

ReadDbg

Definition at line 1173 of file MqContextC.cs.

1173 {
1174 Mq.MqReadDbg(mkrt, hdl);
1175 }
csmqmsgque.MqMsgque Mq

◆ ReadGetNextType()

MkTypeE csmqmsgque.MqContextC.ReadGetNextType ( )
inline

C#: MkTypeE ctx.ReadGetNextType() C-API
get the type (MkTypeE) of the next Item in the read-data-buffer or "0" if not available

Definition at line 1178 of file MqContextC.cs.

1178 {
1179 MkTypeE __retVal__L = Mq.MqReadGetNextType(hdl);
1180 return __retVal__L;
1181 }
MkTypeE

◆ ReadGetNumItems()

int csmqmsgque.MqContextC.ReadGetNumItems ( )
inline

C#: int ctx.ReadGetNumItems() C-API
get the number of items left in the read-data-package

Definition at line 1184 of file MqContextC.cs.

1184 {
1185 Int32 __retVal__L = Mq.MqReadGetNumItems(hdl);
1186 return __retVal__L;
1187 }

◆ ReadItemExists()

bool csmqmsgque.MqContextC.ReadItemExists ( )
inline

C#: bool ctx.ReadItemExists() C-API
check if an item exists in the read-data-package

Definition at line 1190 of file MqContextC.cs.

1190 {
1191 bool __retVal__L = Mq.MqReadItemExists(hdl);
1192 return __retVal__L;
1193 }

◆ ReadUndo()

void csmqmsgque.MqContextC.ReadUndo ( )
inline

C#: ctx.ReadUndo() C-API
undo the last MqContextC READ API function call …

Definition at line 1196 of file MqContextC.cs.

1196 {
1197 MkErrorE errVal = Mq.MqReadUndo(mkrt, hdl);
1198 MkErrorC.Check(hdl, errVal);
1199 }
static void Check(IntPtr ctx, MkErrorE err)
MkErrorE