<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.event.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.event.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.event.php',
    1 => 'Event',
  ),
  'prev' => 
  array (
    0 => 'book.event.php',
    1 => 'Event',
  ),
  'next' => 
  array (
    0 => 'event.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/event/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.event" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   This is an extension to efficiently schedule I/O, time and signal based
   events using the best I/O notification mechanism available for specific
   platform. This is a port of libevent to the PHP infrastructure.
  </p>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    Note, Windows support introduced in
    <code class="literal">event-1.9.0</code>.
   </p>
  </p></blockquote>
  <p class="para">
   Version
   <em>1.0.0</em>
   introduces new object-oriented API (breaking backwards compatibility), and
   support of libevent 2+ including HTTP, DNS, OpenSSL and the event listener.
  </p>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    Note,
    <code class="literal">event-1.0.0</code>
    and greater is not compatible with previous versions.
   </p>
  </p></blockquote>
 </div><?php manual_footer($setup); ?>