16 lines
325 B
C#
Raw Normal View History

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