mirror of
https://github.com/danog/amp.git
synced 2024-11-27 12:35:02 +01:00
21 lines
461 B
PHP
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 = '@';
|
|
}
|