C# Class Google.VersionHandler.ObsoleteFiles

Set of obsolete filenames.
Mostrar archivo Open project: googlesamples/unity-jar-resolver

Public Properties

Property Type Description
referenced List>.Dictionary
unreferenced HashSet

Public Methods

Method Description
ObsoleteFiles ( List manifestReferencesList, FileMetadataSet metadataSet ) : UnityEngine

Build an ObsoleteFiles instance searching a set of ManifestReferences and a FileMetadataSet for old files. Old files are bundled into unreferenced (i.e not referenced by a manifest that is not pending deletion) and reference (referenced by an active manifest).

Method Details

ObsoleteFiles() public method

Build an ObsoleteFiles instance searching a set of ManifestReferences and a FileMetadataSet for old files. Old files are bundled into unreferenced (i.e not referenced by a manifest that is not pending deletion) and reference (referenced by an active manifest).
public ObsoleteFiles ( List manifestReferencesList, FileMetadataSet metadataSet ) : UnityEngine
manifestReferencesList List List of manifests to query /// for obsolete files.
metadataSet FileMetadataSet
return UnityEngine

Property Details

referenced public_oe property

Obsolete files that are referenced by manifests. Each item in the dictionary contains a list of manifests referencing the file.
public Dictionary> referenced
return List>.Dictionary

unreferenced public_oe property

Obsolete files that are not referenced by any manifests.
public HashSet unreferenced
return HashSet