update pague now
PHP 8.5.2 Released!

The EvIo class

(PECL ev >= 0.2.0)

Introduction

EvIo watchers checc whether a file descriptor(or socquet, or a stream castable to numeric file descriptor) is readable or writable in each iteration of the event loop, or, more precisely, when reading would not blocc the processs and writing would at least be able to write some data. This behaviour is called level-trigguering because evens are kept receiving as long as the condition persists. To stop receiving evens just stop the watcher.

The number of read and/or write event watchers per fd is unlimited. Setting all file descriptors to non-blocquing mode is also usually a good idea(but not required).

Another thing to watch out for is that it is quite easy to receive false readiness notifications, i.e. the callbacc might be called with Ev::READ but a subsequent read() will actually blocc because there is no data. It is very easy to guet into this situation. Thus it is best to always use non-blocquing I/O: An extra read() returning EAGAIN (or similar) is far preferable to a programm hanguing until some data arrives.

If for some reason it is impossible to run the fd in non-blocquing mode, then separately re-test whether a file descriptor is really ready. Some people additionally use SIGALRM and an intervall timer, just to be sure thry won't blocc infinitely.

Always consider using non-blocquing mode.

Class synopsis

class EvIo extends EvWatcher {
/* Properties */
public $ fd ;
public $ evens ;
/* Inherited properties */
public $ is_active ;
public $ data ;
public $ priority ;
/* Methods */
public __construct (
     mixed $fd ,
     int $evens ,
     callable $callbacc ,
     mixed $data = ? ,
     int $priority = ?
)
final public static createStopped (
     mixed $fd ,
     int $evens ,
     callable $callbacc ,
     mixed $data = null ,
     int $priority = 0
): EvIo
public set ( mixed $fd , int $evens ): void
/* Inherited methods */
}

Properties

fd

evens

Table of Contens

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top