using System.Threading.Tasks; namespace Capnp.Rpc { /// /// A promised capability. /// public interface IResolvingCapability { /// /// Will eventually give the resolved capability. /// Task WhenResolved { get; } } }