dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

event_buffer_watermark_set> <event_buffer_set_callback
[edit] Last updated: Fri, 28 Jun 2013

view this page in

event_buffer_timeout_set

(PECL libevent >= 0.0.1)

event_buffer_timeout_setSet read and write timeouts for a buffered event

Description

void event_buffer_timeout_set ( resource $bevent , int $read_timeout , int $write_timeout )

Sets the read and write timeouts for the specified buffered event.

Parameters

bevent

Valid buffered event resource.

read_timeout

Read timeout (in seconds).

write_timeout

Write timeout (in seconds).



add a note add a note User Contributed Notes event_buffer_timeout_set - [1 notes]
up
0
john at collabriasoftware dot com
1 year ago
On timeout the error callback is executed. This can be very valuable if you wanted to monitor inactivity on a socket.

You also need to use event_buffer_enable if you wanted to re-use the event listener.

Example:

<?php
function print_line($buf, $arg)
{
    static
$max_requests;

   
$max_requests++;

    if (
$max_requests == 10) {
       
event_base_loopexit($arg);
    }

   
// print the line
   
echo event_buffer_read($buf, 4096);
}

function
error_func($buf, $what, $arg)
{
   
// If this was a read timeout
   
if ($what == (EVBUFFER_READ | EVBUFFER_TIMEOUT)) {
        echo
'5 seconds of inactivity'."\n";

       
// Control timeout features
        //    Could ping the client, or even disconnect the client if you really wanted to.
        //    --- ETC

        // Restart our event loop on this buffer
       
event_buffer_enable($buf, EV_READ);
    }
}

$base = event_base_new();
$eb = event_buffer_new(STDIN, "print_line", NULL, "error_func", $base);

// Timeout after 5 seconds of inactivity
event_buffer_timeout_set($eb, 5, NULL);
event_buffer_base_set($eb, $base);
event_buffer_enable($eb, EV_READ);

event_base_loop($base);

?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites