Documentation ¶
Overview ¶
Package cachestorage implements the CacheStorage domain.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Cache ¶
type Cache struct { CacheID CacheID `json:"cacheId"` // An opaque unique id of the cache. SecurityOrigin string `json:"securityOrigin"` // Security origin of the cache. CacheName string `json:"cacheName"` // The name of the cache. }
Cache Cache identifier.
type DataEntry ¶
type DataEntry struct { Request string `json:"request"` // Request url spec. Response string `json:"response"` // Response status text. ResponseTime float64 `json:"responseTime"` // Number of seconds since epoch. }
DataEntry Data entry.
type DeleteCacheArgs ¶
type DeleteCacheArgs struct {
CacheID CacheID `json:"cacheId"` // Id of cache for deletion.
}
DeleteCacheArgs represents the arguments for DeleteCache in the CacheStorage domain.
func NewDeleteCacheArgs ¶
func NewDeleteCacheArgs(cacheID CacheID) *DeleteCacheArgs
NewDeleteCacheArgs initializes DeleteCacheArgs with the required arguments.
type DeleteEntryArgs ¶
type DeleteEntryArgs struct { CacheID CacheID `json:"cacheId"` // Id of cache where the entry will be deleted. Request string `json:"request"` // URL spec of the request. }
DeleteEntryArgs represents the arguments for DeleteEntry in the CacheStorage domain.
func NewDeleteEntryArgs ¶
func NewDeleteEntryArgs(cacheID CacheID, request string) *DeleteEntryArgs
NewDeleteEntryArgs initializes DeleteEntryArgs with the required arguments.
type RequestCacheNamesArgs ¶
type RequestCacheNamesArgs struct {
SecurityOrigin string `json:"securityOrigin"` // Security origin.
}
RequestCacheNamesArgs represents the arguments for RequestCacheNames in the CacheStorage domain.
func NewRequestCacheNamesArgs ¶
func NewRequestCacheNamesArgs(securityOrigin string) *RequestCacheNamesArgs
NewRequestCacheNamesArgs initializes RequestCacheNamesArgs with the required arguments.
type RequestCacheNamesReply ¶
type RequestCacheNamesReply struct {
Caches []Cache `json:"caches"` // Caches for the security origin.
}
RequestCacheNamesReply represents the return values for RequestCacheNames in the CacheStorage domain.
type RequestEntriesArgs ¶
type RequestEntriesArgs struct { CacheID CacheID `json:"cacheId"` // ID of cache to get entries from. SkipCount int `json:"skipCount"` // Number of records to skip. PageSize int `json:"pageSize"` // Number of records to fetch. }
RequestEntriesArgs represents the arguments for RequestEntries in the CacheStorage domain.
func NewRequestEntriesArgs ¶
func NewRequestEntriesArgs(cacheID CacheID, skipCount int, pageSize int) *RequestEntriesArgs
NewRequestEntriesArgs initializes RequestEntriesArgs with the required arguments.
type RequestEntriesReply ¶
type RequestEntriesReply struct { CacheDataEntries []DataEntry `json:"cacheDataEntries"` // Array of object store data entries. HasMore bool `json:"hasMore"` // If true, there are more entries to fetch in the given range. }
RequestEntriesReply represents the return values for RequestEntries in the CacheStorage domain.