| ChannelShutdownAsync Method |
Shuts down the channel cleanly. It is strongly recommended to shutdown
all previously created channels before exiting from the process.
Namespace: Grpc.CoreAssembly: Grpc.Core (in Grpc.Core.dll) Version: 0.15.0
Syntaxpublic Task ShutdownAsync()
Public Function ShutdownAsync As Task
public:
Task^ ShutdownAsync()
member ShutdownAsync : unit -> Task
Return Value
Type:
Task
Remarks
This method doesn't wait for all calls on this channel to finish (nor does
it explicitly cancel all outstanding calls). It is user's responsibility to make sure
all the calls on this channel have finished (successfully or with an error)
before shutting down the channel to ensure channel shutdown won't impact
the outcome of those remote calls.
See Also