Class StepParam
Inheritance
System.Object
StepParam
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()
Namespace: Mars.Core.Executor.Entities
Assembly: Mars.Core.dll
Syntax
public sealed class StepParam
Constructors
| Improve this Doc View SourceStepParam(Int64, DateTime)
Declaration
public StepParam(long tick, DateTime currentTime)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | tick | |
System.DateTime | currentTime |
StepParam(Int64, Int64, Nullable<DateTime>)
Declaration
public StepParam(long tick, long step, DateTime? currentTime = null)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | tick | |
System.Int64 | step | |
System.Nullable<System.DateTime> | currentTime |
StepParam(Int64)
Declaration
public StepParam(long tick)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | tick |
Properties
| Improve this Doc View SourceCurrentStep
The actual logical simulation step which will be executed
Declaration
public long CurrentStep { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
CurrentTick
The actual consecutive system tick
Declaration
public long CurrentTick { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
CurrentTimePoint
For realtime execution
the actual time point in the realtime
Declaration
public DateTime? CurrentTimePoint { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Parametrization
Specifies a re-/parametrization from outside
Declaration
[JsonProperty("parametrization", Required = Required.Default)]
public List<Parametrization> Parametrization { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Parametrization> |