method
continue_req
v2_5_5 -
Show latest stable
- Class:
Net::IMAP::ResponseParser
continue_req()private
No documentation available.
# File lib/net/imap.rb, line 2265
def continue_req
match(T_PLUS)
token = lookahead
if token.symbol == T_SPACE
shift_token
return ContinuationRequest.new(resp_text, @str)
else
return ContinuationRequest.new(ResponseText.new(nil, ""), @str)
end
end