PHP 8.1.24 Released!

inotify_queue_len

(PECL inotify >= 0.1.2)

inotify_queue_lenReturn a number upper than zero if there are pending events

Descrição

inotify_queue_len(resource $inotify_instance): int

This function allows to know if inotify_read() will block or not. If a number upper than zero is returned, there are pending events and inotify_read() will not block.

Parâmetros

inotify_instance

Um resource retornado por inotify_init()

Valor Retornado

Returns a number upper than zero if there are pending events.

Veja Também

  • inotify_init() - Initialize an inotify instance
  • stream_select() - Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by seconds and microseconds
  • stream_set_blocking() - Set blocking/non-blocking mode on a stream

add a note

User Contributed Notes

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