Sha256: 400aba97b28670dc188130098a10e856cda91e6e695735ebecca41a71612c33d

Contents?: true

Size: 1016 Bytes

Versions: 2

Compression:

Stored size: 1016 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>reason_code (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>/*
 * Return the reason code for the last MQ operation on this queue instance
 *
 * Returns =&gt; FixNum
 * * For a complete list of reason codes, 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_code(VALUE self)
{
    PQUEUE pq;
    Data_Get_Struct(self, QUEUE, pq);
    return LONG2NUM(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/M000012.html
rubywmq-0.3.0-i386-mswin32-mq5.3 doc/classes/WMQ/Queue.src/M000012.html