(PECL event >= 1.2.6-beta)
Event::add — Makes event pending
$timeout
    = ?): boolMarks event pending. Non-pending event will never occur, and the event callback will never be called. In conjuction with Event::del() an event could be re-scheduled by user at any time.
If Event::add() is called on an already pending event, libevent will leave it pending and re-schedule it with the given timeout(if specified). If in this case timeout is not specified, Event::add() has no effect.
timeout
    Timeout in seconds.
   成功时返回 true, 或者在失败时返回 false。