Interface ImportResult
-
@Immutable public interface ImportResultThe result of aAbstractNessieImporter.importNessieRepository()operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.projectnessie.versioned.transfer.serialize.TransferTypes.ExportMetaexportMeta()Export meta information from the export archive.org.projectnessie.versioned.persist.adapter.HeadsAndForkPointsheadsAndForkPoints()Heads and fork-points generated during the export, can be used as an input toCommitLogOptimization.Builder.headsAndForks(HeadsAndForkPoints)when running commits optimization after a repository import.longimportedCommitCount()Number of commits that have been imported.longimportedReferenceCount()Number of references that have been imported.
-
-
-
Method Detail
-
exportMeta
org.projectnessie.versioned.transfer.serialize.TransferTypes.ExportMeta exportMeta()
Export meta information from the export archive.
-
headsAndForkPoints
org.projectnessie.versioned.persist.adapter.HeadsAndForkPoints headsAndForkPoints()
Heads and fork-points generated during the export, can be used as an input toCommitLogOptimization.Builder.headsAndForks(HeadsAndForkPoints)when running commits optimization after a repository import.Note: the HEADS of the named references in an export may not match the heads in
HeadsAndForkPointswhen commits happened while the export has been created.
-
importedCommitCount
long importedCommitCount()
Number of commits that have been imported.
-
importedReferenceCount
long importedReferenceCount()
Number of references that have been imported.
-
-