| GrpcEnvironmentSetCompletionQueueCount Method |
Sets the number of completion queues in the gRPC thread pool that polls for internal RPC events.
Can be only invoke before the GrpcEnviroment is started and cannot be changed afterwards.
Setting the number of completions queues is an advanced setting and you should only use it if you know what you are doing.
Most users should rely on the default value provided by gRPC library.
Note: this method is part of an experimental API that can change or be removed without any prior notice.
Namespace: Grpc.CoreAssembly: Grpc.Core (in Grpc.Core.dll) Version: 1.0.0
Syntaxpublic static void SetCompletionQueueCount(
int completionQueueCount
)
Public Shared Sub SetCompletionQueueCount (
completionQueueCount As Integer
)
public:
static void SetCompletionQueueCount(
int completionQueueCount
)
static member SetCompletionQueueCount :
completionQueueCount : int -> unit
Parameters
- completionQueueCount
- Type: SystemInt32
[Missing <param name="completionQueueCount"/> documentation for "M:Grpc.Core.GrpcEnvironment.SetCompletionQueueCount(System.Int32)"]
See Also