Skip to main content

Class ExecutionMetadata

Namespace: Workspace.XBR.Xperiflow.Routines.Runs

Assembly: Xperiflow.dll

Declaration
public class ExecutionMetadata

Properties​

ExecutionIdentifier​

The unique identifier for the execution. The naming convention may vary depending on the execution backend (conduit, celery, etc.). This identifier will be unique across all runs.

Declaration
public string ExecutionIdentifier { get; set; }

ExecutionType​

The type of execution.

Declaration
public string ExecutionType { get; set; }

InputData​

The input data for the execution. This is a JSON object that contains the input data for the execution. This is not the same as the input parameters for the run. This is the input data for the execution.

Declaration
public string InputData { get; set; }

ExecutionStatus​

Status related data about the execution in its current state.

Declaration
public ExecutionStatus? ExecutionStatus { get; set; }

Extra​

Additional metadata about the execution that is execution backend specific (conduit, celery, etc.).

Declaration
public JObject Extra { get; set; }

Inherited Members​

  • System.Object.Equals(System.Object)
  • System.Object.Equals(System.Object,System.Object)
  • System.Object.GetHashCode
  • System.Object.GetType
  • System.Object.MemberwiseClone
  • System.Object.ReferenceEquals(System.Object,System.Object)
  • System.Object.ToString

Was this page helpful?