Interface IExecutionRuntimeCatalog
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Abstractions.Execution
Assembly: Cephalon.Abstractions.dll
Exposes the execution graphs visible to the current runtime.
public interface IExecutionRuntimeCatalogProperties
Section titled “Properties”Graphs
Section titled “ Graphs”Gets all execution graphs visible to the current runtime.
IReadOnlyList<ExecutionGraphDescriptor> Graphs { get; }Property Value
Section titled “Property Value”IReadOnlyList<ExecutionGraphDescriptor>
Methods
Section titled “Methods”GetById(string)
Section titled “ GetById(string)”Gets one execution graph by its stable identifier.
ExecutionGraphDescriptor? GetById(string graphId)Parameters
Section titled “Parameters”graphId string
The execution-graph identifier to resolve.
Returns
Section titled “Returns”The matching graph, or null when it is not active.
GetBySourceModule(string)
Section titled “ GetBySourceModule(string)”Gets all execution graphs contributed by the requested module.
IReadOnlyList<ExecutionGraphDescriptor> GetBySourceModule(string sourceModuleId)Parameters
Section titled “Parameters”sourceModuleId string
The source module identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<ExecutionGraphDescriptor>
The matching execution graphs, or an empty list when the module contributed none.