Space Engineers
Properties | List of all members
Sandbox.ModAPI.Ingame.IMyGridProgramRuntimeInfo Interface Reference

Provides runtime info for a running grid program. More...

Properties

TimeSpan TimeSinceLastRun [get]
 Gets the time elapsed since the last time the Main method of this program was run. This property returns no valid data neither in the constructor nor the Save method. More...
 
double LastRunTimeMs [get]
 Gets the number of milliseconds it took to execute the Main method the last time it was run. This property returns no valid data neither in the constructor nor the Save method. More...
 
int MaxInstructionCount [get]
 Gets the maximum number of significant instructions that can be executing during a single run, including any other programmable blocks invoked immediately. More...
 
int CurrentInstructionCount [get]
 Gets the current number of significant instructions executed. More...
 
int MaxMethodCallCount [get]
 Gets the maximum number of method calls that can be executed during a single run, including any other programmable blocks invoked immediately. More...
 
int CurrentMethodCallCount [get]
 Gets the current number of method calls. More...
 

Detailed Description

Provides runtime info for a running grid program.

Definition at line 11 of file IMyGridProgramRuntimeInfo.cs.

Property Documentation

int Sandbox.ModAPI.Ingame.IMyGridProgramRuntimeInfo.CurrentInstructionCount
get

Gets the current number of significant instructions executed.

Definition at line 34 of file IMyGridProgramRuntimeInfo.cs.

int Sandbox.ModAPI.Ingame.IMyGridProgramRuntimeInfo.CurrentMethodCallCount
get

Gets the current number of method calls.

Definition at line 45 of file IMyGridProgramRuntimeInfo.cs.

double Sandbox.ModAPI.Ingame.IMyGridProgramRuntimeInfo.LastRunTimeMs
get

Gets the number of milliseconds it took to execute the Main method the last time it was run. This property returns no valid data neither in the constructor nor the Save method.

Definition at line 23 of file IMyGridProgramRuntimeInfo.cs.

int Sandbox.ModAPI.Ingame.IMyGridProgramRuntimeInfo.MaxInstructionCount
get

Gets the maximum number of significant instructions that can be executing during a single run, including any other programmable blocks invoked immediately.

Definition at line 29 of file IMyGridProgramRuntimeInfo.cs.

int Sandbox.ModAPI.Ingame.IMyGridProgramRuntimeInfo.MaxMethodCallCount
get

Gets the maximum number of method calls that can be executed during a single run, including any other programmable blocks invoked immediately.

Definition at line 40 of file IMyGridProgramRuntimeInfo.cs.

TimeSpan Sandbox.ModAPI.Ingame.IMyGridProgramRuntimeInfo.TimeSinceLastRun
get

Gets the time elapsed since the last time the Main method of this program was run. This property returns no valid data neither in the constructor nor the Save method.

Definition at line 17 of file IMyGridProgramRuntimeInfo.cs.


The documentation for this interface was generated from the following file: