class AWS::Core::Http::DoNothingHandler

Public Instance Methods

handle(request, response) click to toggle source
# File spec/aws/core/http/handler_spec.rb, line 24
def handle request, response
  @handle_called = true

end
handle_called?() click to toggle source
# File spec/aws/core/http/handler_spec.rb, line 29
def handle_called?
  @handle_called
end