共用方式為


Scheduler::Create 方法

會建立新排程器,其行為由 _Policy 參數描述、將初始參照放置於排程器,並且傳回其指標。

static Scheduler * __cdecl Create(
   const SchedulerPolicy& _Policy
);

參數

  • _Policy
    描述新建立排程器之行為的排程器原則。

傳回值

新建立的排程器的指標。 此 Scheduler 物件已放置初始參考計數。

備註

Create 方法建立排程器之後,您未來某個時間點必須呼叫 Release 方法,才能移除初始的參考計數並關閉排程器。

使用此方法建立的排程器不會附加至呼叫內容。 可以使用 方法附加至內容。

這個方法可能會擲回各種例外狀況,包括 scheduler_resource_allocation_errorinvalid_scheduler_policy_value

需求

標頭: concrt.h

**命名空間:**concurrency

請參閱

參考

Scheduler 類別

Scheduler::Release 方法

Scheduler::Attach 方法

CurrentScheduler::Create 方法

PolicyElementKey 列舉

概念

工作排程器 (並行執行階段)