class Aws::Plugins::ResponsePaging::Handler

Public Instance Methods

call(context) click to toggle source
# File lib/aws-sdk-core/plugins/response_paging.rb, line 10
def call(context)
  context[:original_params] = context.params
  resp = @handler.call(context)
  PageableResponse.apply(resp)
  resp.pager = context.operation[:pager] || Aws::Pager::NullPager.new
  resp
end