Flowdock
method

idle

Importance_1
Ruby latest stable (v2_5_5) - 0 notes - Class: Net::IMAP
idle(timeout = nil, &response_handler) public

Sends an IDLE command that waits for notifications of new or expunged messages. Yields responses from the server during the IDLE.

Use #idle_done() to leave IDLE.

If timeout is given, this method returns after timeout seconds passed. timeout can be used for keep-alive. For example, the following code checks the connection for each 60 seconds.

loop do
  imap.idle(60) do |res|
    ...
  end
end
Show source
Register or log in to add new notes.