Package io.servicetalk.http.api
Interface HttpExecutionContext
-
- All Superinterfaces:
ExecutionContext
- All Known Subinterfaces:
GrpcExecutionContext
- All Known Implementing Classes:
DefaultHttpExecutionContext
,DelegatingHttpExecutionContext
,ExecutionContextToHttpExecutionContext
public interface HttpExecutionContext extends ExecutionContext
An extension ofExecutionContext
for HTTP.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpExecutionStrategy
executionStrategy()
Returns theHttpExecutionStrategy
associated with this context.-
Methods inherited from interface io.servicetalk.transport.api.ExecutionContext
bufferAllocator, executor, ioExecutor
-
-
-
-
Method Detail
-
executionStrategy
HttpExecutionStrategy executionStrategy()
Returns theHttpExecutionStrategy
associated with this context.- Specified by:
executionStrategy
in interfaceExecutionContext
- Returns:
- The
HttpExecutionStrategy
associated with this context.
-
-