Package com.azure.cosmos.models
Interface FeedRange
public interface FeedRange
Represents a feed range.
-
Method Summary
Modifier and TypeMethodDescriptionstatic FeedRangeCreates a range for an entire containerstatic FeedRangeforLogicalPartition(PartitionKey partitionKey) Creates a range for a certain logical partitionstatic FeedRangefromString(String json) Creates a range from a previously obtained string representation.toString()Gets a json representation of the feed range - the returned json string can be used to create a new feed range instance from it - (use factory method fromJsonString to do so)
-
Method Details
-
fromString
Creates a range from a previously obtained string representation.- Parameters:
json- A string representation of a feed range- Returns:
- A feed range
-
toString
String toString()Gets a json representation of the feed range - the returned json string can be used to create a new feed range instance from it - (use factory method fromJsonString to do so) -
forLogicalPartition
Creates a range for a certain logical partition- Parameters:
partitionKey- the logical partition key value- Returns:
- A feed range for a certain logical partition
-
forFullRange
Creates a range for an entire container- Returns:
- A feed range for an entire container
-