接口 ServerHttpAsyncRequestControl

    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型方法说明
      voidcomplete()
      Mark asynchronous request processing as completed.
      booleanisCompleted()
      Return whether asynchronous request processing has been completed.
      booleanisStarted()
      Return whether asynchronous request processing has been started.
      voidstart()
      Enable asynchronous processing after which the response remains open until a call to complete() is made or the server times out the request.
      voidstart​(long timeout)
      A variation on start() that allows specifying a timeout value to use to use for asynchronous processing.
    • 方法详细资料

      • start

        void start()
        Enable asynchronous processing after which the response remains open until a call to complete() is made or the server times out the request. Once enabled, additional calls to this method are ignored.
      • start

        void start​(long timeout)
        A variation on start() that allows specifying a timeout value to use to use for asynchronous processing. If complete() is not called within the specified value, the request times out.
      • isStarted

        boolean isStarted()
        Return whether asynchronous request processing has been started.
      • complete

        void complete()
        Mark asynchronous request processing as completed.
      • isCompleted

        boolean isCompleted()
        Return whether asynchronous request processing has been completed.