dolittle/DotNET.SDK

View on GitHub
Source/Events/Store/EventStoreCommitForAggregateMethod.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.Events.Contracts;
using Dolittle.SDK.Services;
using Grpc.Core;
using static Dolittle.Runtime.Events.Contracts.EventStore;

namespace Dolittle.SDK.Events.Store;

/// <summary>
/// Represents a wrapper for gRPC EventStore.CommitForAggregate.
/// </summary>
public class EventStoreCommitForAggregateMethod : ICanCallAUnaryMethod<CommitAggregateEventsRequest, CommitAggregateEventsResponse>
{
    /// <inheritdoc/>
    public AsyncUnaryCall<CommitAggregateEventsResponse> Call(CommitAggregateEventsRequest message, ChannelBase channel, CallOptions callOptions)
    {
        var client = new EventStoreClient(channel);
        return client.CommitForAggregateAsync(message, callOptions);
    }
}