D 2.0
About Japanese Translation

Last update Thu Oct 28 17:54:37 2010

core.sync.barrier

スレッドグループの同期のプリミティブを提供します。

License:
Boost License 1.0

Authors:
Sean Kelly

Source:
core/sync/barrier.d

class Barrier;
このクラスは、一定数のスレッドが到達しない限り通り抜けられないバリアを表します。

this(uint limit);
limit 個のスレッドの到達を待つバリアを初期化します。

Parameters:
uint limit 進めるようになるまでに待つスレッドの個数

Throws:
エラー時に SyncException

void wait();
バリアを待ちます。

Throws:
エラー時に SyncException