Interface IOperationCacheKey
Interface for keys used to cache and identify async operations in the Resource Manager. Implementations of this interface provide equality comparisons to determine if two operations are equivalent and can share the same cached result.
Inherited Members
Namespace: UnityEngine.ResourceManagement.Util
Assembly: Unity.ResourceManager.dll
Syntax
public interface IOperationCacheKey : IEquatable<IOperationCacheKey>
Remarks
Cache keys enable the Resource Manager to reuse in-progress or completed operations when multiple requests target the same resource, avoiding redundant loading operations.