1 implementation of StartRequestAsync
Microsoft.CommonLanguageServerProtocol.Framework.Package (1)
3 references to StartRequestAsync
Microsoft.CommonLanguageServerProtocol.Framework.Package (3)
RequestExecutionQueue.cs (2)
367await WrapStartRequestTaskAsync(work.StartRequestAsync<TRequest, TResponse>(deserializedRequest, context, handler, metadata.Language, cancellationToken), rethrowExceptions: true).ConfigureAwait(false);
376var currentWorkTask = WrapStartRequestTaskAsync(Task.Run(() => work.StartRequestAsync<TRequest, TResponse>(deserializedRequest, context, handler, metadata.Language, cancellationToken), cancellationToken), rethrowExceptions: false);