1
0
mirror of https://github.com/danog/amp.git synced 2024-12-15 19:07:22 +01:00
amp/lib/YieldCommands.php

22 lines
488 B
PHP
Raw Normal View History

2014-11-05 17:56:35 +01:00
<?php
namespace Amp;
class YieldCommands {
const ALL = 'all';
const ANY = 'any';
const SOME = 'some';
const PAUSE = 'pause';
2014-12-02 17:52:41 +01:00
const BIND = 'bind';
2014-11-05 17:56:35 +01:00
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 = '@';
}