method
receive_responses
receive_responses()
private
Hide source
# File lib/net/imap.rb, line 927 def receive_responses while true begin resp = get_response rescue Exception @sock.close @client_thread.raise($!) break end break unless resp begin synchronize do case resp when TaggedResponse @tagged_responses[resp.tag] = resp @response_arrival.broadcast if resp.tag == @logout_command_tag return end when UntaggedResponse record_response(resp.name, resp.data) if resp.data.instance_of?(ResponseText) && (code = resp.data.code) record_response(code.name, code.data) end if resp.name == "BYE" && @logout_command_tag.nil? @sock.close raise ByeResponseError, resp.raw_data end when ContinuationRequest @continuation_request = resp @response_arrival.broadcast end @response_handlers.each do |handler| handler.call(resp) end end rescue Exception @client_thread.raise($!) end end end