AsyncLoaderAbstract

open class AsyncLoaderAbstract<Input, Output> : Identifiable, Equatable, @unchecked Sendable

通用异步加载器抽象类

  • Undocumented

    Declaration

    Swift

    public init()
  • 指定输入,异步加载输出,必须调用completion,子类必须实现

    Declaration

    Swift

    open func load(_ input: Input, completion: @escaping @Sendable (Result<Output, Error>) -> Void)
  • Declaration

    Swift

    public static func == (lhs: AsyncLoaderAbstract<Input, Output>, rhs: AsyncLoaderAbstract<Input, Output>) -> Bool

Concurrency+AsyncLoaderAbstract

  • load(_:) Asynchronous

    指定输入,协程方式异步加载输出,默认调用load(_:completion:)

    Declaration

    Swift

    public func load(_ input: Input) async throws -> Output where Output : Sendable