17 lines
359 B
C#
Raw Normal View History

2019-06-12 21:56:55 +02:00
using System.Threading.Tasks;
2020-01-11 17:21:31 +01:00
#nullable enable
2019-06-12 21:56:55 +02:00
namespace Capnp.Rpc
{
/// <summary>
/// A promised capability.
/// </summary>
public interface IResolvingCapability
{
/// <summary>
/// Will eventually give the resolved capability.
/// </summary>
Task<Proxy> WhenResolved { get; }
}
}
2020-01-11 17:21:31 +01:00
#nullable restore