RSDArchivable

public protocol RSDArchivable

An archivable result is an object wrapper for results that allows them to be transformed into data for a zipped archive or service.

  • Build the archiveable or uploadable data for this result.

    Declaration

    Swift

    func buildArchiveData(at stepPath: String?) throws -> (manifest: RSDFileManifest, data: Data)?
  • buildArchiveData() Extension method

    Convenience method for calling buildArchiveData() without a step path.

    Declaration

    Swift

    public func buildArchiveData() throws -> (manifest: RSDFileManifest, data: Data)?