Function v8::new_default_platform[][src]

pub fn new_default_platform(
    thread_pool_size: u32,
    idle_task_support: bool
) -> UniqueRef<Platform>
Expand description

Returns a new instance of the default v8::Platform implementation.

|thread_pool_size| is the number of worker threads to allocate for background jobs. If a value of zero is passed, a suitable default based on the current number of processors online will be chosen. If |idle_task_support| is enabled then the platform will accept idle tasks (IdleTasksEnabled will return true) and will rely on the embedder calling v8::platform::RunIdleTasks to process the idle tasks.