1 type derived from RequestExecutionQueue
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
RoslynRequestExecutionQueue.cs (1)
13internal sealed class RoslynRequestExecutionQueue : RequestExecutionQueue<RequestContext>
1 instantiation of RequestExecutionQueue
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\AbstractLanguageServer.cs (1)
170var queue = new RequestExecutionQueue<TRequestContext>(this, Logger, handlerProvider);
14 references to RequestExecutionQueue
Microsoft.CodeAnalysis.LanguageServer.Protocol (14)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\AbstractLanguageServer.cs (3)
170var queue = new RequestExecutionQueue<TRequestContext>(this, Logger, handlerProvider); 362internal RequestExecutionQueue<TRequestContext>.TestAccessor? GetQueueAccessor() 364if (_server._queue.Value is RequestExecutionQueue<TRequestContext> requestExecution)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\RequestExecutionQueue.cs (4)
57private static readonly MethodInfo s_processQueueCoreAsync = typeof(RequestExecutionQueue<TRequestContext>) 58.GetMethod(nameof(RequestExecutionQueue<TRequestContext>.ProcessQueueCoreAsync), BindingFlags.NonPublic | BindingFlags.Instance)!; 459private readonly RequestExecutionQueue<TRequestContext> _queue; 461public TestAccessor(RequestExecutionQueue<TRequestContext> queue)
Workspaces\LspWorkspaceManager.cs (7)
53/// <para/> Access to this is guaranteed to be serial by the <see cref="RequestExecutionQueue{RequestContextType}"/> 63/// <para/> Access to this is guaranteed to be serial by the <see cref="RequestExecutionQueue{RequestContextType}"/> 104/// <see cref="DidOpenHandler.MutatesSolutionState"/> is true which means this runs serially in the <see cref="RequestExecutionQueue{RequestContextType}"/> 144/// <see cref="DidCloseHandler.MutatesSolutionState"/> is true which means this runs serially in the <see cref="RequestExecutionQueue{RequestContextType}"/> 188/// <see cref="DidChangeHandler.MutatesSolutionState"/> is true which means this runs serially in the <see cref="RequestExecutionQueue{RequestContextType}"/> 214/// This is always called serially in the <see cref="RequestExecutionQueue{RequestContextType}"/> when creating the <see cref="RequestContext"/>. 232/// This is always called serially in the <see cref="RequestExecutionQueue{RequestContextType}"/> when creating the <see cref="RequestContext"/>.