<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.eventbase.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'eventbase.free.php',
    1 => 'EventBase::free',
    2 => 'Free resources allocated for this event base',
  ),
  'up' => 
  array (
    0 => 'class.eventbase.php',
    1 => 'EventBase',
  ),
  'prev' => 
  array (
    0 => 'eventbase.exit.php',
    1 => 'EventBase::exit',
  ),
  'next' => 
  array (
    0 => 'eventbase.getfeatures.php',
    1 => 'EventBase::getFeatures',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/event/eventbase/free.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="eventbase.free" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">EventBase::free</h1>
  <p class="verinfo">(PECL event &gt;= 1.10.0)</p><p class="refpurpose"><span class="refname">EventBase::free</span> &mdash; <span class="dc-title">Free resources allocated for this event base</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-eventbase.free-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span>
   <span class="methodname"><strong>EventBase::free</strong></span>(): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>

  <p class="para rdfs-comment">
   Deallocates resources allocated by libevent for the <span class="classname"><a href="class.eventbase.php" class="classname">EventBase</a></span> object.
  </p>
  <div class="warning"><strong class="warning">警告</strong>
   <p class="para">
    The
    <span class="methodname"><strong>EventBase::free()</strong></span>
    method doesn&#039;t destruct the object itself. To destruct the
    object completely call
    <span class="function"><a href="function.unset.php" class="function">unset()</a></span>,
    or assign <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>.
   </p>
   <p class="para">
    This method does not deallocate or detach any of the events that are
    currently associated with the <span class="classname"><a href="class.eventbase.php" class="classname">EventBase</a></span> object, or
    close any of their sockets - beware.
   </p>
  </div>
 </div>

 <div class="refsect1 parameters" id="refsect1-eventbase.free-parameters">
  <h3 class="title">パラメータ</h3>
  <p class="para">この関数にはパラメータはありません。</p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-eventbase.free-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="para">
   値を返しません。
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-eventbase.free-seealso">
  <h3 class="title">参考</h3>
  <ul class="simplelist">
   <li>
    <span class="methodname"><a href="eventbase.construct.php" class="methodname" rel="rdfs-seeAlso">EventBase::__construct()</a> - Constructs EventBase object</span>
   </li>
  </ul>
 </div>

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