1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Watcher.php
2015-07-29 23:23:53 -04:00

18 lines
502 B
PHP

<?php
namespace Amp;
/**
* This class exists to provide faux enum values in internal Reactor code.
* Applications should not rely upon these values as part of the public API.
*/
final class Watcher {
const IMMEDIATE = 0b00000001;
const TIMER = 0b00000010;
const TIMER_ONCE = 0b00000110;
const TIMER_REPEAT = 0b00001010;
const IO = 0b00010000;
const IO_READER = 0b00110000;
const IO_WRITER = 0b01010000;
const SIGNAL = 0b10000000;
}