method
fetch_internal
v1_8_6_287 -
Show latest stable
- Class:
Net::IMAP
fetch_internal(cmd, set, attr)private
No documentation available.
# File lib/net/imap.rb, line 1164
def fetch_internal(cmd, set, attr)
if attr.instance_of?(String)
attr = RawData.new(attr)
end
synchronize do
@responses.delete("FETCH")
send_command(cmd, MessageSet.new(set), attr)
return @responses.delete("FETCH")
end
end