Class Execution
Configuration parameters for the local and distributed execution
Inheritance
System.Object
Execution
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.Interfaces.Model
Assembly: Mars.Interfaces.dll
Syntax
public class Execution
Properties
| Improve this Doc View SourceBlockingTimeUnit
The unit for the time interval for the MaximalBlockingTime
Declaration
[JsonProperty("timeUnit", NullValueHandling = NullValueHandling.Ignore)]
public TimeSpanUnit? BlockingTimeUnit { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<TimeSpanUnit> |
MaximalBlockingTime
Amount of time to block
Declaration
[JsonProperty("blockingTime", NullValueHandling = NullValueHandling.Ignore)]
public int? MaximalBlockingTime { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
MaximalLocalMemory
The upper bound for local memory usage in megabytes
Declaration
[JsonProperty("maxMemory", NullValueHandling = NullValueHandling.Ignore)]
public double? MaximalLocalMemory { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
MaximalLocalProcess
The upper bound for local processes to execute the tick clients
Declaration
[JsonProperty("maxProcessCount", NullValueHandling = NullValueHandling.Ignore)]
public int? MaximalLocalProcess { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
NodeNumber
The associated number of the node within an simulation execution cluster
Default value is zero for only one node or local execution
Declaration
[JsonProperty("nodeNumber", NullValueHandling = NullValueHandling.Ignore)]
public int NodeNumber { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
TableDatabaseHost
The optional host for table based database imports
Declaration
[JsonProperty("tableDatabaseHost", NullValueHandling = NullValueHandling.Ignore)]
public string TableDatabaseHost { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TableDatabasePassword
The password for the specified user TableDatabaseUser
Declaration
[JsonProperty("tableDatabasePassword", NullValueHandling = NullValueHandling.Ignore)]
public string TableDatabasePassword { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TableDatabaseUser
The granted username to access the table database in TableDatabaseHost
Declaration
[JsonProperty("tableDatabaseUser", NullValueHandling = NullValueHandling.Ignore)]
public string TableDatabaseUser { get; set; }
Property Value
Type | Description |
---|---|
System.String |