QueuesSegmentOptions Class

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

public final class QueuesSegmentOptions

A set of options for selecting queues from Storage Queue service.

Constructor Summary

Constructor Description
QueuesSegmentOptions()

Method Summary

Modifier and Type Method and Description
Integer getMaxResultsPerPage()
String getPrefix()
boolean isIncludeMetadata()
QueuesSegmentOptions setIncludeMetadata(boolean includeMetadata)

Sets the status of including queue metadata when listing queues

QueuesSegmentOptions setMaxResultsPerPage(Integer maxResultsPerPage)

Sets the maximum number of queues to include in a single response

QueuesSegmentOptions setPrefix(String prefix)

Sets the prefix that a queue must match to be included in the listing

Methods inherited from java.lang.Object

Constructor Details

QueuesSegmentOptions

public QueuesSegmentOptions()

Method Details

getMaxResultsPerPage

public Integer getMaxResultsPerPage()

Returns:

the maximum number of queues to include in a single response

getPrefix

public String getPrefix()

Returns:

the prefix the queue name must match to be included in the listing

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

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

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

Applies to