12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace Swoole;
- class Async
- {
- /**
- * @return mixed
- */
- public static function read($filename, $callback, $chunk_size = null, $offset = null)
- {
- }
- /**
- * @return mixed
- */
- public static function write($filename, $content, $offset = null, $callback = null)
- {
- }
- /**
- * @return mixed
- */
- public static function readFile($filename, $callback)
- {
- }
- /**
- * @return mixed
- */
- public static function writeFile($filename, $content, $callback = null, $flags = null)
- {
- }
- /**
- * @return mixed
- */
- public static function dnsLookup($hostname, $callback)
- {
- }
- /**
- * @return mixed
- */
- public static function set(array $settings)
- {
- }
- /**
- * @return mixed
- */
- public static function exec($command, $callback)
- {
- }
- }
|