C# 클래스 BEPUphysics.Threading.ParallelLoopManager

Manages parallel for loops. Cannot handle general task-based parallelism.
상속: IDisposable
파일 보기 프로젝트 열기: Indiefreaks/igf 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void

Releases resources used by the object.

ForLoop ( int beginIndex, int endIndex, Action loopBody ) : void

Iterates over the interval.

ParallelLoopManager ( ) : System

Constructs a new parallel loop manager.

비공개 메소드들

메소드 설명
AddThread ( ) : void
AddThread ( Action threadStart, object threadStartInformation ) : void
OnWorkerFinish ( ) : void
RemoveThread ( ) : void

메소드 상세

Dispose() 공개 메소드

Releases resources used by the object.
public Dispose ( ) : void
리턴 void

ForLoop() 공개 메소드

Iterates over the interval.
public ForLoop ( int beginIndex, int endIndex, Action loopBody ) : void
beginIndex int Starting index of the iteration.
endIndex int Ending index of the iteration.
loopBody Action Function to call on each iteration.
리턴 void

ParallelLoopManager() 공개 메소드

Constructs a new parallel loop manager.
public ParallelLoopManager ( ) : System
리턴 System