Function MQCB

Source
pub unsafe extern "C" fn MQCB(
    Hconn: MQHCONN,
    Operation: MQLONG,
    CallbackDesc: Option<&MQCBD>,
    Hobj: MQHOBJ,
    MsgDesc: PMQVOID,
    GetMsgOpts: Option<&MQGMO>,
    CompCode: &mut MQLONG,
    Reason: &mut MQLONG,
)
Expand description

Register Message consumer

§Arguments

  • Hconn: Connection handle
  • Operation: Operation
  • CallbackDesc: Callback descriptor
  • Hobj: Object handle
  • MsgDesc: Message Descriptor
  • GetMsgOpts: Get options
  • CompCode (Output): Completion code
  • Reason (Output): Reason code qualifying CompCode

§References