C# 클래스 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.
파일 보기 프로젝트 열기: spicypixel/concurrency-kit-cs 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Stop StopInstruction
YieldToAnyFiber YieldToAnyFiber

보호된 메소드들

메소드 설명
FiberInstruction ( ) : System

Initializes a new instance of the FiberInstruction class.

메소드 상세

FiberInstruction() 보호된 메소드

Initializes a new instance of the FiberInstruction class.
protected FiberInstruction ( ) : System
리턴 System

프로퍼티 상세

Stop 공개적으로 정적으로 프로퍼티

An instruction to terminate execution of the current fiber.
public static StopInstruction,SpicyPixel.Threading Stop
리턴 StopInstruction

YieldToAnyFiber 공개적으로 정적으로 프로퍼티

An instruction to cause the current fiber to yield to any ready fiber.
public static YieldToAnyFiber,SpicyPixel.Threading YieldToAnyFiber
리턴 YieldToAnyFiber