CacheManager

public class CacheManager : NSObject, @unchecked Sendable

缓存管理器

  • 注册指定类型的缓存管理器创建句柄,用于动态扩展缓存类型

    Declaration

    Swift

    public static func registerCache(_ type: CacheType, block: @escaping @Sendable () -> CacheProtocol)
  • 预置指定类型的缓存管理器创建句柄,已注册时不生效,用于动态扩展缓存类型

    Declaration

    Swift

    @discardableResult
    public static func presetCache(_ type: CacheType, block: @escaping @Sendable () -> CacheProtocol) -> Bool
  • 获取指定类型的缓存单例对象

    Declaration

    Swift

    public static func manager(type: CacheType) -> CacheProtocol?