class FromScanTree[U >: T, That] extends StrictSplitterCheckTask[Combiner[U, That], FromScanTree[U, That]]
- Attributes
- protected[this]
- Alphabetic
- By Inheritance
- FromScanTree
- StrictSplitterCheckTask
- Task
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new FromScanTree(tree: ScanTree[U], z: U, op: (U, U) => U, cbf: CombinerFactory[U, That])
Value Members
- def forwardThrowable(): Unit
- Definition Classes
- Task
- def leaf(prev: Option[Combiner[U, That]]): Unit
Body of the task - non-divisible unit of work done by this task.
Body of the task - non-divisible unit of work done by this task. Optionally is provided with the result from the previous completed task or
None
if there was no previous task (or the previous task is uncompleted or unknown).- Definition Classes
- FromScanTree → Task
- def merge(that: FromScanTree[U, That]): Unit
Read of results of
that
task and merge them into results of this one.Read of results of
that
task and merge them into results of this one.- Definition Classes
- FromScanTree → Task
- def repr: FromScanTree[U, That]
- Definition Classes
- Task
- def requiresStrictSplitters: Boolean
- Definition Classes
- StrictSplitterCheckTask
- var result: Combiner[U, That]
A result that can be accessed once the task is completed.
A result that can be accessed once the task is completed.
- Definition Classes
- FromScanTree → Task
- def shouldSplitFurther: Boolean
Decides whether or not this task should be split further.
Decides whether or not this task should be split further.
- Definition Classes
- FromScanTree → Task
- def split: scala.Seq[Task[Combiner[U, That], FromScanTree[U, That]]]
Splits this task into a list of smaller tasks.
Splits this task into a list of smaller tasks.
- Definition Classes
- FromScanTree → Task
- val throwable: Throwable
- Definition Classes
- Task
- Annotations
- @volatile()