Interface PoolInterface


  • public interface PoolInterface
    The pool interface is a push style interface to a pool of connections against a single host.
    • Method Detail

      • request

        void request​(HttpRequest request,
                     scala.concurrent.Promise<HttpResponse> responsePromise)
        Submit request to pool. After completion the pool will complete the promise with the response. If the queue in front of the pool is full, the promise will be failed with a BufferOverflowException.
        Parameters:
        request - (undocumented)
        responsePromise - (undocumented)