LoaderAbstract

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

通用加载器抽象类

  • Undocumented

    Declaration

    Swift

    public init()
  • 指定输入,加载输出,子类必须实现

    Declaration

    Swift

    open func load(_ input: Input) throws -> Output
  • Declaration

    Swift

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