Table of Contents

Class TAsyncOperationProgress<ResultType>

Namespace
TAssetBundle
Assembly
TAssetBundle.dll

Asynchronous operation with progress (with result type)

public class TAsyncOperationProgress<ResultType> : TAsyncOperationBase, IAsyncOperation, IEnumerator

Type Parameters

ResultType
Inheritance
TAsyncOperationProgress<ResultType>
Implements
Inherited Members
Extension Methods

Properties

Result

The result of the operation

public ResultType Result { get; }

Property Value

ResultType

Methods

Clear()

Initializes the asynchronous operation

public override void Clear()

Events

OnComplete

Event triggered when the operation is completed

public event Action<ResultType> OnComplete

Event Type

Action<ResultType>

OnProgress

Event triggered for progress updates

public event Action<ResultType> OnProgress

Event Type

Action<ResultType>