Previous | Next | Contents | Index |
Begin the body of a message which is being enqueued.
argument informationstatus = PMDF_start_message_body (nq_context)
Argument | Data type | Access | Mechanism |
---|---|---|---|
nq_context | context pointer | read/write | reference |
argument informationstatus = PMDFstartMessageBody (nq_context)
int PMDFstartMessageBody(PMDF_nq **nq_context) |
nq_context
A message enqueue context created withPMDFstartMessageEnvelope
.
After the message header has been written,PMDFstartMessageBody
should be called to begin the message body. If the message has no body, thenPMDFenqueueMessage
should be called without callingPMDFstartMessageBody
. AfterPMDFstartMessageBody
has been called, eitherPMDFwriteLine
orPMDFwriteText
must be used to write the message body. Once the message body is complete,PMDFenqueueMessage
should be used to enqueue the message.
PMDF__OK Normal, successful completion. PMDF__BADCONTEXT Illegal or corrupt context. Message body not started.
Previous | Next | Contents | Index |