Class SlotContext
- java.lang.Object
-
- akka.http.impl.engine.client.pool.SlotContext
-
- All Implemented Interfaces:
akka.macros.LogHelper
,akka.macros.LogHelperMacro
public abstract class SlotContext extends java.lang.Object implements akka.macros.LogHelper
Internal APIInterface between slot states and the actual slot.
-
-
Constructor Summary
Constructors Constructor Description SlotContext()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
dispatchResponseResult(PoolFlow.RequestContext req, scala.util.Try<HttpResponse> result)
abstract boolean
isConnectionClosed()
abstract void
openConnection()
abstract ConnectionPoolSettings
settings()
abstract boolean
willCloseAfter(HttpResponse res)
-
-
-
Method Detail
-
dispatchResponseResult
public abstract void dispatchResponseResult(PoolFlow.RequestContext req, scala.util.Try<HttpResponse> result)
-
isConnectionClosed
public abstract boolean isConnectionClosed()
-
openConnection
public abstract void openConnection()
-
settings
public abstract ConnectionPoolSettings settings()
-
willCloseAfter
public abstract boolean willCloseAfter(HttpResponse res)
-
-