Sha256: 12af7ed848e188821f15b4b49ac56b8b600b783669e97b441de157b685ed28d0
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
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>reason (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>/* * Returns a textual representation of the reason_code for the last MQ operation * * Returns => String * * For a complete list of reasons, please see WMQ Constants or * the WebSphere MQ documentation for Reason Codes * * Note * * The list of Reason Codes varies depending on the version of WebSphere MQ * and the operating system on which Ruby WMQ was compiled */ VALUE QueueManager_reason(VALUE self) { PQUEUE_MANAGER pqm; Data_Get_Struct(self, QUEUE_MANAGER, pqm); return rb_str_new2(wmq_reason(pqm->reason_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/M000027.html |
rubywmq-0.3.0-i386-mswin32-mq5.3 | doc/classes/WMQ/QueueManager.src/M000027.html |