Class: Restforce::Middleware

Inherits:
Faraday::Middleware
  • Object
show all
Defined in:
lib/restforce/middleware.rb

Overview

Base class that all middleware can extend. Provides some convenient helper functions.

Direct Known Subclasses

Authentication, Authorization, Gzip, InstanceURL, Mashify

Defined Under Namespace

Classes: Authentication, Authorization, Caching, Gzip, InstanceURL, Logger, Mashify, Multipart, RaiseError

Instance Method Summary collapse

Constructor Details

#initialize(app, client, options) ⇒ Middleware

Returns a new instance of Middleware.



15
16
17
# File 'lib/restforce/middleware.rb', line 15

def initialize(app, client, options)
  @app, @client, @options = app, client, options
end

Instance Method Details

#clientObject

Internal: Proxy to the client.



20
21
22
# File 'lib/restforce/middleware.rb', line 20

def client
  @client
end

#connectionObject

Internal: Proxy to the client’s faraday connection.



25
26
27
# File 'lib/restforce/middleware.rb', line 25

def connection
  client.send(:connection)
end