class LHC::Request
def on_complete(response)
Experimental RBS support (using type sampling data from the type_fusion
project).
def on_complete: (Typhoeus::Response response) -> nil
This signature was generated using 35 samples from 2 applications.
def on_complete(response) self.response = response.is_a?(LHC::Response) ? response : LHC::Response.new(response, self) interceptors.intercept(:after_response) handle_error(self.response) unless self.response.success? end