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

contributors($setup);

?>
<div id="intro.ev" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   This extension provides interface to
   <a href="http://software.schmorp.de/pkg/libev.html" class="link external">&raquo;&nbsp;libev</a>
   library - a high performance full-featured event loop written in C.
  </p>

  <blockquote class="note"><p><strong class="note">Зауваження</strong>: <span class="simpara">Для Windows-платформ це
розширення недоступне.</span></p></blockquote>

 <p class="para">
   <em>Libev</em>
   is an event loop: one registers interest in certain events (such as a file
   descriptor being readable or a timeout occurring), and it will manage these
   event sources and provide the program with events.
  </p>
  <p class="para">
   To do this, it must take more or less complete control over the process (or
   thread) by executing the event loop handler, and will then communicate
   events via a callback mechanism.
  </p>
  <p class="para">
   You register interest in certain events by registering so-called event
   watchers, and then hand it over to libev by starting the watcher.
  </p>
  <p class="para">
   For details refer to the
   <a href="http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod" class="link external">&raquo;&nbsp;documentation of libev</a>.
  </p>
 </div><?php manual_footer($setup); ?>