Class: Square::HttpCallBack

Inherits:
Object
  • Object
show all
Defined in:
lib/square/http/http_call_back.rb

Overview

HttpCallBack allows defining callables for pre and post API calls.

Instance Method Summary collapse

Instance Method Details

#on_after_response(_http_response) ⇒ Object

A controller will call this method after making an HTTP Request.

Parameters:

Raises:

  • (NotImplementedError)


14
15
16
17
# File 'lib/square/http/http_call_back.rb', line 14

def on_after_response(_http_response)
  raise NotImplementedError, 'This method needs
    to be implemented in a child class.'
end

#on_before_request(_http_request) ⇒ Object

A controller will call this method before making an HTTP Request. will execute.

Parameters:

  • The (HttpRequest)

    HttpRequest object which the HttpClient

Raises:

  • (NotImplementedError)


7
8
9
10
# File 'lib/square/http/http_call_back.rb', line 7

def on_before_request(_http_request)
  raise NotImplementedError, 'This method needs
    to be implemented in a child class.'
end