1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/YieldCommands.php
2014-11-05 11:56:35 -05:00

21 lines
461 B
PHP

<?php
namespace Amp;
class YieldCommands {
const ALL = 'all';
const ANY = 'any';
const SOME = 'some';
const WAIT = 'wait';
const IMMEDIATELY = 'immediately';
const ONCE = 'once';
const REPEAT = 'repeat';
const ON_READABLE = 'onreadable';
const ON_WRITABLE = 'onwritable';
const ENABLE = 'enable';
const DISABLE = 'disable';
const CANCEL = 'cancel';
const NOWAIT = 'nowait';
const NOWAIT_PREFIX = '@';
}