Sha256: 90adcd84e651e1a1973fe8b597fec88762fe96add278549821f56b8fd2466dab

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 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::Queue)</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 on this queue instance
 *
 * Returns =&gt; 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 Queue_reason(VALUE self)
{
    PQUEUE pq;
    Data_Get_Struct(self, QUEUE, pq);
    return rb_str_new2(wmq_reason(pq-&gt;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/Queue.src/M000013.html
rubywmq-0.3.0-i386-mswin32-mq5.3 doc/classes/WMQ/Queue.src/M000013.html