File: ExampleRequestContextFactory.cs
Web Access
Project: src\src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework.Example\Microsoft.CommonLanguageServerProtocol.Framework.Example.csproj (Microsoft.CommonLanguageServerProtocol.Framework.Example)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using System.Threading;
using System.Threading.Tasks;
 
namespace Microsoft.CommonLanguageServerProtocol.Framework.Example;
 
internal class ExampleRequestContextFactory : AbstractRequestContextFactory<ExampleRequestContext>
{
    private readonly ILspServices _lspServices;
 
    public ExampleRequestContextFactory(ILspServices lspServices)
    {
        _lspServices = lspServices;
    }
 
    public override Task<ExampleRequestContext> CreateRequestContextAsync<TRequestParam>(IQueueItem<ExampleRequestContext> queueItem, IMethodHandler methodHandler, TRequestParam requestParam, CancellationToken cancellationToken)
    {
        var logger = _lspServices.GetRequiredService<ILspLogger>();
 
        var requestContext = new ExampleRequestContext(_lspServices, logger);
 
        return Task.FromResult(requestContext);
    }
}