summaryrefslogtreecommitdiff
path: root/external/rx/Ix/NET/System.Interactive.Async/IAsyncGrouping.cs
blob: 39a5d7394b5d41f5b49a817bd7fb9b16e4c3619a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;

namespace System.Linq
{
    public interface IAsyncGrouping<
#if !NO_VARIANCE
        out 
#endif
        TKey,
#if !NO_VARIANCE
        out 
#endif
        TElement> : IAsyncEnumerable<TElement>
    {
        TKey Key { get; }
    }
}