Package org.jclouds.blobstore.domain
Interface PageSet<T>
-
- All Superinterfaces:
Collection<T>,Iterable<T>,Set<T>
- All Known Implementing Classes:
PageSetImpl
public interface PageSet<T> extends Set<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextMarker()If there is a next marker, then the set is incomplete and you should issue another command to retrieve the rest, setting the optionmarkerto this value.-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
Method Detail
-
getNextMarker
String getNextMarker()
If there is a next marker, then the set is incomplete and you should issue another command to retrieve the rest, setting the optionmarkerto this value. Some providers like Azure have opaque markers so portable code should not rely on the actual values.- Returns:
- next marker, or null if list is complete
-
-