Class SchedulerThreadEventArgs
- Namespace
- Stride.Core.MicroThreading
- Assembly
- Stride.Core.MicroThreading.dll
Provides data for the MicroThreadStarted, MicroThreadEnded, MicroThreadCallbackStart and MicroThreadCallbackEnd events.
public class SchedulerThreadEventArgs : EventArgs
- Inheritance
-
SchedulerThreadEventArgs
- Inherited Members
Constructors
SchedulerThreadEventArgs(MicroThread, int)
Initializes a new instance of the SchedulerThreadEventArgs class.
public SchedulerThreadEventArgs(MicroThread microThread, int threadId)
Parameters
microThread
MicroThreadThe micro thread.
threadId
intThe managed thread identifier.
Properties
MicroThread
Gets the MicroThread this event concerns.
public MicroThread MicroThread { get; }
Property Value
- MicroThread
The micro thread.
ThreadId
Gets the ManagedThreadId active when this event happened.
public int ThreadId { get; }
Property Value
- int
The managed thread identifier.