mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-13 07:11:44 +01:00
14 lines
383 B
C#
14 lines
383 B
C#
|
namespace Capnp.Rpc
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// A mono skeleton (as opposed to <see cref="PolySkeleton"/>) is a skeleton which implements one particular RPC interface.
|
|||
|
/// </summary>
|
|||
|
public interface IMonoSkeleton: IProvidedCapability
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface ID of this skeleton.
|
|||
|
/// </summary>
|
|||
|
ulong InterfaceId { get; }
|
|||
|
}
|
|||
|
}
|