mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
16 lines
325 B
C#
16 lines
325 B
C#
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; }
|
|
}
|
|
}
|