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