dolittle/DotNET.SDK

View on GitHub
Source/Projections/Store/ProjectionsGetOne.cs

Summary

Maintainability
A
50 mins
Test Coverage
F
0%
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Dolittle.Runtime.Projections.Contracts;
using Dolittle.SDK.Services;
using Grpc.Core;
using static Dolittle.Runtime.Projections.Contracts.Projections;

namespace Dolittle.SDK.Projections.Store;

/// <summary>
/// Represents a wrapper for gRPC EventStore.FetchForAggregate.
/// </summary>
public class ProjectionsGetOne : ICanCallAUnaryMethod<GetOneRequest, GetOneResponse>
{
    /// <inheritdoc/>
    public AsyncUnaryCall<GetOneResponse> Call(GetOneRequest message, ChannelBase channel, CallOptions callOptions)
    {
        var client = new ProjectionsClient(channel);
        return client.GetOneAsync(message, callOptions);
    }
}