RequestEntriesRequest

@Serializable
data class RequestEntriesRequest(val cacheId: CacheId, val skipCount: Int? = null, val pageSize: Int? = null, val pathFilter: String? = null)

Request object containing input parameters for the CacheStorageDomain.requestEntries command.

Constructors

Link copied to clipboard
constructor(cacheId: CacheId, skipCount: Int? = null, pageSize: Int? = null, pathFilter: String? = null)

Types

Link copied to clipboard
class Builder(val cacheId: CacheId)

A builder for RequestEntriesRequest, which allows setting the optional parameters of the CacheStorageDomain.requestEntries command via a lambda.

Properties

Link copied to clipboard

ID of cache to get entries from.

Link copied to clipboard

Number of records to fetch.

Link copied to clipboard

If present, only return the entries containing this substring in the path

Link copied to clipboard

Number of records to skip.