Interface PoolInterface
public interface PoolInterface
The pool interface is a push style interface to a pool of connections against a single host.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classstatic interfacestatic class -
Method Summary
Modifier and TypeMethodDescriptionvoidrequest(HttpRequest request, scala.concurrent.Promise<HttpResponse> responsePromise) Submit request to pool.scala.concurrent.Future<PoolInterface.ShutdownReason>shutdown(scala.concurrent.ExecutionContext ec) scala.concurrent.Future<PoolInterface.ShutdownReason>
-
Method Details
-
request
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)
-
shutdown
scala.concurrent.Future<PoolInterface.ShutdownReason> shutdown(scala.concurrent.ExecutionContext ec) -
whenShutdown
scala.concurrent.Future<PoolInterface.ShutdownReason> whenShutdown()
-