Skip to content

Interface IEdgeNodeCatalog

Namespace: Cephalon.Edge.Services
Assembly: Cephalon.Edge.dll

Exposes the merged set of edge nodes available to the active edge runtime.

public interface IEdgeNodeCatalog

Gets the effective node set after host options and module contributors have both been applied.

IReadOnlyList<EdgeNodeDescriptor> Nodes { get; }

IReadOnlyList<EdgeNodeDescriptor>

Attempts to resolve an edge node descriptor by identifier.

bool TryGet(string nodeId, out EdgeNodeDescriptor node)

nodeId string

The node identifier to resolve.

node EdgeNodeDescriptor

When this method returns, contains the resolved node if found.

bool

true when the node exists; otherwise false.