A classe parallel\Events\Event\Type

(0.9.0)

Resumo da classe

final class parallel\Events\Event\Type {
/* Event::$object foi lido em Event::$value */
const Read;
/* Entrada para Event::$source escrita em Event::$object */
const Write;
/* Event::$object (Channel) foi fechado */
const Close;
/* Event::$object (Future) foi fechado */
const Cancel;
/* Execução em tempo de execução Event::$object (Future) foi eliminado */
const Kill;
/* Event::$object (Future) gerou erro */
const Error;
}
add a note

User Contributed Notes 1 note

up
1
abolfazl dot ziaratban at gmail dot com
3 years ago
array(6) {
["Read"]=>
int(1)
["Write"]=>
int(2)
["Close"]=>
int(3)
["Cancel"]=>
int(5)
["Kill"]=>
int(6)
["Error"]=>
int(4)
}
To Top