Package io.servicetalk.grpc.api
Interface FilterableGrpcClient
-
- All Superinterfaces:
AsyncCloseable,ListenableAsyncCloseable
public interface FilterableGrpcClient extends ListenableAsyncCloseable
A client to a gRPC service that supports filtering.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GrpcExecutionContextexecutionContext()Get theGrpcExecutionContextused during construction of this object.-
Methods inherited from interface io.servicetalk.concurrent.api.AsyncCloseable
closeAsync, closeAsyncGracefully
-
Methods inherited from interface io.servicetalk.concurrent.api.ListenableAsyncCloseable
onClose
-
-
-
-
Method Detail
-
executionContext
GrpcExecutionContext executionContext()
Get theGrpcExecutionContextused during construction of this object.Note that the
ExecutionContext.ioExecutor()will not necessarily be associated with a specific thread unless that was how this object was built.- Returns:
- the
GrpcExecutionContextused during construction of this object.
-
-