59 lines
881 B
PHP
59 lines
881 B
PHP
<?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)
|
|
{
|
|
}
|
|
|
|
|
|
}
|