# File lib/aws/http/handler.rb, line 58
      def handle_async(request, http_response, handle)
        Thread.new do
          begin
            self.handle(request, http_response)
          rescue => e
            handle.signal_failure
          else
            handle.signal_success
          end
        end
      end