Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 22913 программистов и 1241 робот. Сейчас ищет 751 программист ...
Приступая к работе

SyncEvent::__construct - Constructs a new SyncEvent object

Вернуться к: SyncEvent

SyncEvent::__construct

(PECL sync >= 1.0.0)

SyncEvent::__constructConstructs a new SyncEvent object

Описание

public SyncEvent::__construct ([ string $name [, bool $manual ]] )

Constructs a named or unnamed event object.

Список параметров

name

The name of the event if this is a named event object.

Замечание:

If the name already exists, it must be able to be opened by the current user that the process is running as or an exception will be thrown with a meaningless error message.

manual

Specifies whether or not the event object must be reset manually.

Замечание:

Manual reset event objects allow all waiting processes through until the object is reset.

Возвращаемые значения

The new SyncEvent object. An exception is thrown if the event object cannot be created or opened.

Примеры

Пример #1 SyncEvent::__construct() example

<?php
// In a web application:
$event = new SyncEvent("GetAppReport");
$event->fire();

// In a cron job:
$event = new SyncEvent("GetAppReport");
$event->wait();
?>

Смотрите также



Вернуться к: SyncEvent

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware