Package org.openstreetmap.josm.io
Class MultiFetchServerObjectReader.FetchResult
- java.lang.Object
-
- org.openstreetmap.josm.io.MultiFetchServerObjectReader.FetchResult
-
- Enclosing class:
- MultiFetchServerObjectReader
protected static class MultiFetchServerObjectReader.FetchResult extends Object
The class holding the results given byMultiFetchServerObjectReader.Fetcher
. It is only a wrapper of the resultingDataSet
and the collection ofPrimitiveId
that could not have been loaded.
-
-
Field Summary
Fields Modifier and Type Field Description DataSet
dataSet
The resulting data setSet<PrimitiveId>
missingPrimitives
The collection of primitive ids that could not have been loadedprivate Set<Long>
rc404
-
Constructor Summary
Constructors Constructor Description FetchResult(DataSet dataSet, Set<PrimitiveId> missingPrimitives)
Constructs aFetchResult
-
-
-
Field Detail
-
missingPrimitives
public final Set<PrimitiveId> missingPrimitives
The collection of primitive ids that could not have been loaded
-
-
Constructor Detail
-
FetchResult
public FetchResult(DataSet dataSet, Set<PrimitiveId> missingPrimitives)
Constructs aFetchResult
- Parameters:
dataSet
- The resulting data setmissingPrimitives
- The collection of primitive ids that could not have been loaded
-
-