Sha256: eba30038f5d36e8721e621a218790a5d8edf2d44c36a45d0f0a7c886595e6d09
Contents?: true
Size: 858 Bytes
Versions: 2
Compression:
Stored size: 858 Bytes
Contents
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>comp_code (WMQ::QueueManager)</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" /> </head> <body class="standalone-code"> <pre>/* * Return the completion code for the last MQ operation * * Returns => FixNum * * WMQ::MQCC_OK 0 * * WMQ::MQCC_WARNING 1 * * WMQ::MQCC_FAILED 2 * * WMQ::MQCC_UNKNOWN -1 * */ VALUE QueueManager_comp_code(VALUE self) { PQUEUE_MANAGER pqm; Data_Get_Struct(self, QUEUE_MANAGER, pqm); return LONG2NUM(pqm->comp_code); }</pre> </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubywmq-0.3.0-i386-mswin32-mq6 | doc/classes/WMQ/QueueManager.src/M000025.html |
rubywmq-0.3.0-i386-mswin32-mq5.3 | doc/classes/WMQ/QueueManager.src/M000025.html |