class Net::HTTP::Pipeline::PersistenceError
Raised when the server appears to not support persistent connections
Public Class Methods
new(requests, responses)
click to toggle source
Creates a new PersistenceError with a
list of requests
that have not been sent to the server and a
list of responses
that have been retrieved from the server.
Calls superclass method
Net::HTTP::Pipeline::Error.new
# File lib/net/http/pipeline.rb, line 91 def initialize requests, responses super 'persistent connections required', requests, responses end