update page now
Laravel Live Japan

La clase parallel\Events\Event\Type

(0.9.0)

Sinopsis de la Clase

final class parallel\Events\Event\Type {
/* Event::$object fue leído en Event::$value */
const Read;
/* Entrada para Event::$source escrita en Event::$object */
const Write;
/* Event::$object (Channel) fue cerrado */
const Close;
/* Event::$object (Future) fue cancelado */
const Cancel;
/* El entorno de ejecución de Event::$object (Future) fue terminado */
const Kill;
/* Event::$object (Future) generó un error */
const Error;
}
add a note

User Contributed Notes 1 note

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