<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.zmqpoll.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'zmqpoll.remove.php',
    1 => 'ZMQPoll::remove',
    2 => 'Remove item from poll set',
  ),
  'up' => 
  array (
    0 => 'class.zmqpoll.php',
    1 => 'ZMQPoll',
  ),
  'prev' => 
  array (
    0 => 'zmqpoll.poll.php',
    1 => 'ZMQPoll::poll',
  ),
  'next' => 
  array (
    0 => 'class.zmqdevice.php',
    1 => 'ZMQDevice',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/zmq/zmqpoll/remove.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="zmqpoll.remove" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ZMQPoll::remove</h1>
  <p class="verinfo">(PECL zmq &gt;= 0.5.0)</p><p class="refpurpose"><span class="refname">ZMQPoll::remove</span> &mdash; <span class="dc-title">Remove item from poll set</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-zmqpoll.remove-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>ZMQPoll::remove</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span> <code class="parameter">$item</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   Remove item from the poll set. The <code class="parameter">item</code> parameter can be ZMQSocket object,
   a stream resource or the id returned from <span class="function"><a href="zmqpoll.add.php" class="function">ZMQPoll::add()</a></span> method.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-zmqpoll.remove-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">item</code></dt>
     <dd>
      <p class="para">
       The ZMQSocket object, PHP stream or <span class="type"><a href="language.types.string.php" class="type string">string</a></span> id of the item.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-zmqpoll.remove-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Returns true if the item was removed and false if the object 
   with given id does not exist in the poll set.
  </p>
 </div>



</div><?php manual_footer($setup); ?>