1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace Swoole;
- class Event
- {
- /**
- * @return mixed
- */
- public static function add($fd, ?callable $read_callback, ?callable $write_callback = null, $events = null)
- {
- }
- /**
- * @return mixed
- */
- public static function del($fd)
- {
- }
- /**
- * @return mixed
- */
- public static function set($fd, ?callable $read_callback = null, ?callable $write_callback = null, $events = null)
- {
- }
- /**
- * @return mixed
- */
- public static function isset($fd, $events = null)
- {
- }
- /**
- * @return mixed
- */
- public static function dispatch()
- {
- }
- /**
- * @return mixed
- */
- public static function defer(callable $callback)
- {
- }
- /**
- * @return mixed
- */
- public static function cycle(?callable $callback, $before = null)
- {
- }
- /**
- * @return mixed
- */
- public static function write($fd, $data)
- {
- }
- /**
- * @return mixed
- */
- public static function wait()
- {
- }
- /**
- * @return mixed
- */
- public static function rshutdown()
- {
- }
- /**
- * @return mixed
- */
- public static function exit()
- {
- }
- }
|