method

call

rails latest stable - Class: ActiveRecord::IdentityMap::Middleware

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

call(env)
public

No documentation available.

# File activerecord/lib/active_record/identity_map.rb, line 154
      def call(env)
        enabled = IdentityMap.enabled
        IdentityMap.enabled = true
        status, headers, body = @app.call(env)
        [status, headers, Body.new(body, enabled)]
      end