Package org.jclouds.blobstore.domain
Interface PageSet<T>
- All Superinterfaces:
Collection<T>
,Iterable<T>
,Set<T>
- All Known Implementing Classes:
PageSetImpl
-
Method Summary
Modifier and TypeMethodDescriptionIf there is a next marker, then the set is incomplete and you should issue another command to retrieve the rest, setting the optionmarker
to this value.Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Method Details
-
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 optionmarker
to 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
-