<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.eventbuffer.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'eventbuffer.prependbuffer.php',
    1 => 'EventBuffer::prependBuffer',
    2 => 'Moves all data from source buffer to the front of current buffer',
  ),
  'up' => 
  array (
    0 => 'class.eventbuffer.php',
    1 => 'EventBuffer',
  ),
  'prev' => 
  array (
    0 => 'eventbuffer.prepend.php',
    1 => 'EventBuffer::prepend',
  ),
  'next' => 
  array (
    0 => 'eventbuffer.pullup.php',
    1 => 'EventBuffer::pullup',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/event/eventbuffer/prependbuffer.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="eventbuffer.prependbuffer" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">EventBuffer::prependBuffer</h1>
  <p class="verinfo">(PECL event &gt;= 1.2.6-beta)</p><p class="refpurpose"><span class="refname">EventBuffer::prependBuffer</span> &mdash; <span class="dc-title">Moves all data from source buffer to the front of current buffer</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-eventbuffer.prependbuffer-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span>
   <span class="methodname"><strong>EventBuffer::prependBuffer</strong></span>(<span class="methodparam">
    
    <span class="type"><a href="class.eventbuffer.php" class="type EventBuffer">EventBuffer</a></span> <code class="parameter">$buf</code>
   </span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   Behaves as
   <span class="methodname"><a href="eventbuffer.addbuffer.php" class="methodname">EventBuffer::addBuffer()</a></span>,
   except that it moves data to the front of the buffer.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-eventbuffer.prependbuffer-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <dl>
   
    <dt>
     <code class="parameter">buf</code>
    </dt>
    <dd>
     <p class="para">
      Source buffer.
     </p>
    </dd>
   
  </dl>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-eventbuffer.prependbuffer-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Restituisce <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> in caso di successo, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> in caso di fallimento.
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-eventbuffer.prependbuffer-seealso">
  <h3 class="title">Vedere anche:</h3>
  <ul class="simplelist">
   <li>
    <span class="methodname"><a href="eventbuffer.add.php" class="methodname" rel="rdfs-seeAlso">EventBuffer::add()</a> - Append data to the end of an event buffer</span>
   </li>
   <li>
    <span class="methodname"><a href="eventbuffer.addbuffer.php" class="methodname" rel="rdfs-seeAlso">EventBuffer::addBuffer()</a> - Move all data from a buffer provided to the current instance of EventBuffer</span>
   </li>
   <li>
    <span class="methodname"><a href="eventbuffer.prepend.php" class="methodname" rel="rdfs-seeAlso">EventBuffer::prepend()</a> - Prepend data to the front of the buffer</span>
   </li>
  </ul>
 </div>

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