mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
15 lines
338 B
C#
15 lines
338 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<ConsumedCapability?> WhenResolved { get; }
|
|
}
|
|
} |