MicroTask<T>

Overview

Location

 

constructor

 

constructor

 

MicroTask<T>()

 

init()

 

MicroTask<T>()

 

Sub New()

Done    (declared in VoidMicroTask)

 

class property Done: VoidMicroTask read;

 

class VoidMicroTask Done { get; }

 

static var Done: VoidMicroTask { get{} }

 

class VoidMicroTask Done { __get; }

 

Shared ReadOnly Property Done() As VoidMicroTask

Equals  virtual    (declared in Object)

Default constructor.

 

method Equals(aOther: Object): Boolean

 

Boolean Equals(Object aOther)

 

func Equals(_ aOther: Object) -> Boolean

 

Boolean Equals(Object aOther)

 

Function Equals(aOther As Object) As Boolean

Parameters:

  • aOther: the reference to compare this with.

Exception    (declared in VoidMicroTask)

 

property Exception: Exception read;

 

Exception Exception { get; }

 

var Exception: Exception { get{} }

 

Exception Exception { __get; }

 

ReadOnly Property Exception() As Exception

Finalize  protected virtual    (declared in Object)

 

method Finalize

 

void Finalize()

 

func Finalize()

 

void Finalize()

 

Sub Finalize()

GetHashCode  virtual    (declared in Object)

Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.

 

method GetHashCode: Int32

 

Int32 GetHashCode()

 

func GetHashCode() -> Int32

 

Int32 GetHashCode()

 

Function GetHashCode() As Int32

GetResult    (declared in VoidMicroTask)

waits for the task and throws an exception if there was one.

 

method GetResult

 

void GetResult()

 

func GetResult()

 

void GetResult()

 

Sub GetResult()

GetResult

 

method GetResult: T

 

T GetResult()

 

func GetResult() -> T

 

T GetResult()

 

Function GetResult() As T

GetType    (declared in Object)

Returns the actual type of this class

 

method GetType: Type

 

Type GetType()

 

func GetType() -> Type

 

Type GetType()

 

Function GetType() As Type

IsCompleted    (declared in VoidMicroTask)

 

property IsCompleted: Boolean read;

 

Boolean IsCompleted { get; }

 

var IsCompleted: Boolean { get{} }

 

Boolean IsCompleted { __get; }

 

ReadOnly Property IsCompleted() As Boolean

OnComplete    (declared in VoidMicroTask)

Registers a completion callback,

 

method OnComplete(callback: IAsyncCompletion)

 

void OnComplete(IAsyncCompletion callback)

 

func OnComplete(_ callback: IAsyncCompletion)

 

void OnComplete(IAsyncCompletion callback)

 

Sub OnComplete(callback As IAsyncCompletion)

Parameters:

  • callback:

ReferenceEquals    (declared in Object)

Compares two references for equivalence (even if they have an equals operator)

 

class method ReferenceEquals(a: Object; b: Object): Boolean

 

static Boolean ReferenceEquals(Object a, Object b)

 

static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean

 

static Boolean ReferenceEquals(Object a, Object b)

 

Shared Function ReferenceEquals(a As Object, b As Object) As Boolean

Parameters:

  • a: left value
  • b: right value

SetComplete    (declared in VoidMicroTask)

completes the task with NO result.

 

method SetComplete

 

void SetComplete()

 

func SetComplete()

 

void SetComplete()

 

Sub SetComplete()

SetComplete (T)

 

method SetComplete(value: T)

 

void SetComplete(T value)

 

func SetComplete(_ value: T)

 

void SetComplete(T value)

 

Sub SetComplete(value As T)

Parameters:

  • value:

SetException    (declared in VoidMicroTask)

Completes the task with an exception

 

method SetException(e: Exception)

 

void SetException(Exception e)

 

func SetException(_ e: Exception)

 

void SetException(Exception e)

 

Sub SetException(e As Exception)

Parameters:

  • e:

State    (declared in VoidMicroTask)

 

property State: TaskState read;

 

TaskState State { get; }

 

var State: TaskState { get{} }

 

TaskState State { __get; }

 

ReadOnly Property State() As TaskState

ToString  virtual    (declared in Object)

Gets the string representation of this method.

 

method ToString: String

 

String ToString()

 

func ToString() -> String

 

String ToString()

 

Function ToString() As String

Wait    (declared in VoidMicroTask)

wait for this task to finish

 

method Wait

 

void Wait()

 

func Wait()

 

void Wait()

 

Sub Wait()

 

Exception    (declared in VoidMicroTask)

 

property Exception: Exception read;

 

Exception Exception { get; }

 

var Exception: Exception { get{} }

 

Exception Exception { __get; }

 

ReadOnly Property Exception() As Exception

IsCompleted    (declared in VoidMicroTask)

 

property IsCompleted: Boolean read;

 

Boolean IsCompleted { get; }

 

var IsCompleted: Boolean { get{} }

 

Boolean IsCompleted { __get; }

 

ReadOnly Property IsCompleted() As Boolean

State    (declared in VoidMicroTask)

 

property State: TaskState read;

 

TaskState State { get; }

 

var State: TaskState { get{} }

 

TaskState State { __get; }

 

ReadOnly Property State() As TaskState

Done    (declared in VoidMicroTask)

 

class property Done: VoidMicroTask read;

 

class VoidMicroTask Done { get; }

 

static var Done: VoidMicroTask { get{} }

 

class VoidMicroTask Done { __get; }

 

Shared ReadOnly Property Done() As VoidMicroTask

 

ReferenceEquals    (declared in Object)

Compares two references for equivalence (even if they have an equals operator)

 

class method ReferenceEquals(a: Object; b: Object): Boolean

 

static Boolean ReferenceEquals(Object a, Object b)

 

static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean

 

static Boolean ReferenceEquals(Object a, Object b)

 

Shared Function ReferenceEquals(a As Object, b As Object) As Boolean

Parameters:

  • a: left value
  • b: right value

 

constructor

 

constructor

 

MicroTask<T>()

 

init()

 

MicroTask<T>()

 

Sub New()

Equals  virtual    (declared in Object)

Default constructor.

 

method Equals(aOther: Object): Boolean

 

Boolean Equals(Object aOther)

 

func Equals(_ aOther: Object) -> Boolean

 

Boolean Equals(Object aOther)

 

Function Equals(aOther As Object) As Boolean

Parameters:

  • aOther: the reference to compare this with.

Finalize  protected virtual    (declared in Object)

 

method Finalize

 

void Finalize()

 

func Finalize()

 

void Finalize()

 

Sub Finalize()

GetHashCode  virtual    (declared in Object)

Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.

 

method GetHashCode: Int32

 

Int32 GetHashCode()

 

func GetHashCode() -> Int32

 

Int32 GetHashCode()

 

Function GetHashCode() As Int32

GetResult    (declared in VoidMicroTask)

waits for the task and throws an exception if there was one.

 

method GetResult

 

void GetResult()

 

func GetResult()

 

void GetResult()

 

Sub GetResult()

GetResult

 

method GetResult: T

 

T GetResult()

 

func GetResult() -> T

 

T GetResult()

 

Function GetResult() As T

GetType    (declared in Object)

Returns the actual type of this class

 

method GetType: Type

 

Type GetType()

 

func GetType() -> Type

 

Type GetType()

 

Function GetType() As Type

OnComplete    (declared in VoidMicroTask)

Registers a completion callback,

 

method OnComplete(callback: IAsyncCompletion)

 

void OnComplete(IAsyncCompletion callback)

 

func OnComplete(_ callback: IAsyncCompletion)

 

void OnComplete(IAsyncCompletion callback)

 

Sub OnComplete(callback As IAsyncCompletion)

Parameters:

  • callback:

SetComplete    (declared in VoidMicroTask)

completes the task with NO result.

 

method SetComplete

 

void SetComplete()

 

func SetComplete()

 

void SetComplete()

 

Sub SetComplete()

SetComplete (T)

 

method SetComplete(value: T)

 

void SetComplete(T value)

 

func SetComplete(_ value: T)

 

void SetComplete(T value)

 

Sub SetComplete(value As T)

Parameters:

  • value:

SetException    (declared in VoidMicroTask)

Completes the task with an exception

 

method SetException(e: Exception)

 

void SetException(Exception e)

 

func SetException(_ e: Exception)

 

void SetException(Exception e)

 

Sub SetException(e As Exception)

Parameters:

  • e:

ToString  virtual    (declared in Object)

Gets the string representation of this method.

 

method ToString: String

 

String ToString()

 

func ToString() -> String

 

String ToString()

 

Function ToString() As String

Wait    (declared in VoidMicroTask)

wait for this task to finish

 

method Wait

 

void Wait()

 

func Wait()

 

void Wait()

 

Sub Wait()