Class QueuesSegmentOptions

java.lang.Object
com.azure.storage.queue.models.QueuesSegmentOptions

public final class QueuesSegmentOptions extends Object
A set of options for selecting queues from Storage Queue service.
See Also:
  • Constructor Details

    • QueuesSegmentOptions

      public QueuesSegmentOptions()
  • Method Details

    • isIncludeMetadata

      public boolean isIncludeMetadata()
      Returns:
      the status of including metadata when listing queues
    • setIncludeMetadata

      public QueuesSegmentOptions setIncludeMetadata(boolean includeMetadata)
      Sets the status of including queue metadata when listing queues
      Parameters:
      includeMetadata - Flag indicating if metadata should be included in the listing
      Returns:
      An updated QueuesSegmentOptions object
    • getPrefix

      public String getPrefix()
      Returns:
      the prefix the queue name must match to be included in the listing
    • setPrefix

      public QueuesSegmentOptions setPrefix(String prefix)
      Sets the prefix that a queue must match to be included in the listing
      Parameters:
      prefix - The prefix that queues must start with to pass the filter
      Returns:
      An updated QueuesSegmentOptions object
    • getMaxResultsPerPage

      public Integer getMaxResultsPerPage()
      Returns:
      the maximum number of queues to include in a single response
    • setMaxResultsPerPage

      public QueuesSegmentOptions setMaxResultsPerPage(Integer maxResultsPerPage)
      Sets the maximum number of queues to include in a single response
      Parameters:
      maxResultsPerPage - Maximum number of results to include in a single response
      Returns:
      An updated QueuesSegmentOptions object