eio_set_min_parallel

(PECL eio >= 0.0.1dev) Set minimum parallel thread number void eio_set_min_parallel ( string $nthreads ) Parameters: nthreads Number of parallel threads. Returns: No value is returned.

eio_set_max_poll_time

(PECL eio >= 0.0.1dev) Set maximum poll time void eio_set_max_poll_time ( float $nseconds ) Polling stops, if poll took longer than nseconds seconds. Parameters: nseconds Number of seconds Returns: No value is returned.

eio_set_max_poll_reqs

(PECL eio >= 0.0.1dev) Set maximum number of requests processed in a poll. void eio_set_max_poll_reqs ( int $nreqs ) Parameters: nreqs Number of requests Returns: No value is returned.

eio_set_max_parallel

(PECL eio >= 0.0.1dev) Set maximum parallel threads void eio_set_max_parallel ( int $nthreads ) Parameters: nthreads Number of parallel threads Returns: No value is returned.

eio_set_max_idle

(PECL eio >= 0.0.1dev) Set maximum number of idle threads. void eio_set_max_idle ( int $nthreads ) Parameters: nthreads Number of idle threads. Returns: No value is returned.

eio_sendfile

(PECL eio >= 0.0.1dev) Transfer data between file descriptors resource eio_sendfile ( mixed $out_fd, mixed $in_fd, int $offset, int $length [, int $pri [, callable $callback [, string $data ]]] ) eio_sendfile() copies data between one file descriptor and another. See SENDFILE(2) man page for details. Parameters: out_fd Output stream, Socket resource, or file descriptor

eio_seek

(PECL eio >= 0.5.0b) Repositions the offset of the open file associated with the fd argument to the argument offset according to the directive whence resource eio_seek ( mixed $fd, int $offset, int $whence [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_seek() repositions the offset of the open file associated with stream, Socket resource, or file descriptor specified by fd to

eio_rmdir

(PECL eio >= 0.0.1dev) Remove a directory resource eio_rmdir ( string $path [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_rmdir() removes a directory. Parameters: path Directory path pri The request priority: EIO_PRI_DEFAULT, EIO_PRI_MIN, EIO_PRI_MAX, or NULL. If NULL passed, pri interna

eio_rename

(PECL eio >= 0.0.1dev) Change the name or location of a file. resource eio_rename ( string $path, string $new_path [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_rename() renames or moves a file to new location. Parameters: path Source path new_path Target path pri

eio_realpath

(PECL eio >= 0.0.1dev) Get the canonicalized absolute pathname. resource eio_realpath ( string $path, int $pri, callable $callback [, string $data = NULL ] ) eio_realpath() returns the canonicalized absolute pathname in result argument of callback function. Parameters: path Short pathname pri Short pathname ca