Class HttpChannel

    • Method Detail

      • destroy

        public void destroy()
        Deprecated.
      • getHttpDestination

        public HttpDestination getHttpDestination()
        Deprecated.
      • associate

        public boolean associate​(HttpExchange exchange)
        Deprecated.

        Associates the given exchange to this channel in order to be sent over the network.

        If the association is successful, the exchange can be sent. Otherwise, the channel must be disposed because whoever terminated the exchange did not do it - it did not have the channel yet.

        Parameters:
        exchange - the exchange to associate
        Returns:
        true if the association was successful, false otherwise
      • disassociate

        public boolean disassociate​(HttpExchange exchange)
        Deprecated.
      • getHttpExchange

        public HttpExchange getHttpExchange()
        Deprecated.
      • getExpireNanoTime

        public long getExpireNanoTime()
        Deprecated.
        Description copied from interface: CyclicTimeouts.Expirable

        Returns the expiration time in nanoseconds.

        The value to return must be calculated taking into account System.nanoTime(), for example:

        expireNanoTime = System.nanoTime() + timeoutNanos

        Returning Long.MAX_VALUE indicates that this entity does not expire.

        Specified by:
        getExpireNanoTime in interface CyclicTimeouts.Expirable
        Returns:
        the expiration time in nanoseconds, or Long.MAX_VALUE if this entity does not expire
      • send

        public void send()
        Deprecated.
      • send

        public abstract void send​(HttpExchange exchange)
        Deprecated.
      • release

        public abstract void release()
        Deprecated.
      • proceed

        public void proceed​(HttpExchange exchange,
                            java.lang.Throwable failure)
        Deprecated.
      • abort

        public boolean abort​(HttpExchange exchange,
                             java.lang.Throwable requestFailure,
                             java.lang.Throwable responseFailure)
        Deprecated.
      • abortResponse

        public boolean abortResponse​(HttpExchange exchange,
                                     java.lang.Throwable failure)
        Deprecated.
      • exchangeTerminated

        public void exchangeTerminated​(HttpExchange exchange,
                                       Result result)
        Deprecated.
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object