PHP Classes

Nice intro on Libevent

Recommend this page to a friend!

      PHP Classes blog  >  Creating a PHP Daemon...  >  All threads  >  Nice intro on Libevent  >  (Un) Subscribe thread alerts  
Subject:Nice intro on Libevent
Summary:Good article
Messages:3
Author:Cyril Ogana
Date:2015-03-28 11:09:52
Update:2015-04-05 20:05:01
 

  1. Nice intro on Libevent   Reply   Report abuse  
Picture of Cyril Ogana Cyril Ogana - 2015-03-28 21:00:11
This is a good article. Thank you for the code samples, which I have tried out. I clearly need to get more acquiainted to libevent to unlock this power in my projects. For the libevent example should it be event_del($event) and not event_delete($event)?

  2. Re: Nice intro on Libevent   Reply   Report abuse  
Picture of Dmitry Mamontov Dmitry Mamontov - 2015-03-30 12:38:37 - In reply to message 1 from Cyril Ogana
Sorry you are right, for example, it's a typo, I just use it a function that wraps event_del(). In this case the wrap is not necessary. Ask fix.

  3. Re: Nice intro on Libevent   Reply   Report abuse  
Picture of Cyril Ogana Cyril Ogana - 2015-04-05 20:05:01 - In reply to message 2 from Dmitry Mamontov
Thanks, noted