Interface ICellTrafficAutomationEdgeMaterializer
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Abstractions.Technologies
Assembly: Cephalon.Abstractions.dll
Applies edge-managed cell traffic automation posture to one edge runtime.
public interface ICellTrafficAutomationEdgeMaterializerProperties
Section titled “Properties”MaterializerId
Section titled “ MaterializerId”Gets the stable materializer identifier that should appear on operator-facing runtime answers.
string MaterializerId { get; }Property Value
Section titled “Property Value”Priority
Section titled “ Priority”Gets the priority used when multiple edge materializers can reconcile the same automation answer. Higher values win, while ties still fail deterministically.
int Priority { get; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”CanMaterialize(CellTrafficAutomationRuntimeDescriptor)
Section titled “ CanMaterialize(CellTrafficAutomationRuntimeDescriptor)”Determines whether this materializer owns the requested traffic automation answer.
bool CanMaterialize(CellTrafficAutomationRuntimeDescriptor automation)Parameters
Section titled “Parameters”automation CellTrafficAutomationRuntimeDescriptor
The effective traffic automation answer to evaluate.
Returns
Section titled “Returns”true when this materializer should reconcile the automation; otherwise false.
MaterializeAsync(CellTrafficAutomationRuntimeDescriptor, CancellationToken)
Section titled “ MaterializeAsync(CellTrafficAutomationRuntimeDescriptor, CancellationToken)”Applies or reconciles the requested traffic automation answer against the owned edge runtime.
ValueTask<CellTrafficAutomationMaterializationResult> MaterializeAsync(CellTrafficAutomationRuntimeDescriptor automation, CancellationToken cancellationToken = default)Parameters
Section titled “Parameters”automation CellTrafficAutomationRuntimeDescriptor
The effective traffic automation answer to materialize.
cancellationToken CancellationToken
The token that cancels the operation.
Returns
Section titled “Returns”ValueTask<CellTrafficAutomationMaterializationResult>
The observed edge-materialization result.