C# Class SpicyPixel.Threading.FiberInstruction

Represents a fiber instruction to be processed by a FiberScheduler.
Specific instructions understood by a scheduler are to be derived from this abstract type.
Afficher le fichier Open project: spicypixel/concurrency-kit-cs Class Usage Examples

Méthodes publiques

Свойство Type Description
Stop StopInstruction
YieldToAnyFiber YieldToAnyFiber

Méthodes protégées

Méthode Description
FiberInstruction ( ) : System

Initializes a new instance of the FiberInstruction class.

Method Details

FiberInstruction() protected méthode

Initializes a new instance of the FiberInstruction class.
protected FiberInstruction ( ) : System
Résultat System

Property Details

Stop public_oe static_oe property

An instruction to terminate execution of the current fiber.
public static StopInstruction,SpicyPixel.Threading Stop
Résultat StopInstruction

YieldToAnyFiber public_oe static_oe property

An instruction to cause the current fiber to yield to any ready fiber.
public static YieldToAnyFiber,SpicyPixel.Threading YieldToAnyFiber
Résultat YieldToAnyFiber