TINMAN 3D / REALTIME TERRAIN
Software Development Kit - User Manual

class TaskBase in Tinman.Core.Threading.Pooling

abstract class TaskBase implements ITaskBase
  base of Task
  TaskVoid

Public / Attributes

Flags

The task flags.

public property Flags { get }
type TaskFlags
value The task flags.
implements ITaskBase.Flags

Group

The group this task belongs to.

public property Group { get set }
type TaskGroup
value The task group or null to use the default task group.
implements ITaskBase.Group

Name

Human-readable name of this task.

public property Name { get }
type string
value [not-null] The task name.
implements ITaskBase.Name

Remarks:

The name is primarily used for error reporting.

Protected / Constructors

TaskBase

Creates a new instance of TaskBase.

protected constructor TaskBase (string name, TaskFlags flags)
params name [not-null] The task name.
  flags The task flags.