docs.unity.cn
    Show / Hide Table of Contents

    Class AsyncOperationBase<TObject>

    base class for implemented AsyncOperations, implements the needed interfaces and consolidates redundant code

    Inheritance
    Object
    AsyncOperationBase<TObject>
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: UnityEngine.ResourceManagement.AsyncOperations
    Syntax
    public abstract class AsyncOperationBase<TObject> : IAsyncOperation
    Type Parameters
    Name Description
    TObject

    The type of the operation.

    Constructors

    Name Description
    AsyncOperationBase()

    Basic constructor for AsyncOperationBase.

    Fields

    Name Description
    HasExecuted

    Properties

    Name Description
    DebugName

    A custom operation should override this method to provide a debug friendly name for the operation.

    IsRunning

    True if the current op has begun but hasn't yet reached completion. False otherwise.

    Progress

    A custom operation should override this method to return the progress of the operation.

    Result

    Accessor to Result of the operation.

    Methods

    Name Description
    Complete(TObject, Boolean, Exception, Boolean)

    Complete the operation and invoke events.

    Complete(TObject, Boolean, String)

    Complete the operation and invoke events.

    Complete(TObject, Boolean, String, Boolean)

    Complete the operation and invoke events.

    Destroy()

    This will be called by the resource manager when the reference count of the operation reaches zero. This method should not be called manually. A custom operation should override this method and release any held resources

    Execute()

    This will be called by the resource manager after all dependent operation complete. This method should not be called manually. A custom operation should override this method and begin work when it is called.

    GetDependencies(List<AsyncOperationHandle>)

    A custom operation should override this method to provide a list of AsyncOperationHandles that it depends on.

    InvokeWaitForCompletion()

    Used for the implementation of WaitForCompletion in an IAsyncOperation.

    ToString()

    Converts the information about the operation to a formatted string.

    WaitForCompletion()

    Synchronously complete the async operation.

    Back to top Copyright © 2021 Unity Technologies
    Generated by DocFX
    on Thursday, December 2, 2021
    Terms of use