- class QAbstractNetworkCache¶
The
QAbstractNetworkCache
class provides the interface for cache implementations. More…Inherited by:
QNetworkDiskCache
Synopsis¶
Methods¶
def
__init__()
Virtual methods¶
def
cacheSize()
def
clear()
def
data()
def
insert()
def
metaData()
def
prepare()
def
remove()
def
updateMetaData()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
QAbstractNetworkCache
is the base class for every standard cache that is used byQNetworkAccessManager
.QAbstractNetworkCache
is an abstract class and cannot be instantiated.See also
Constructs an abstract network cache with the given
parent
.- abstract cacheSize()¶
- Return type:
int
Returns the current size taken up by the cache. Depending upon the cache implementation this might be disk or memory size.
In the base class this is a pure virtual function.
See also
- abstract clear()¶
Removes all items from the cache. Unless there was failures clearing the cache
cacheSize()
should return 0 after a call to clear.In the base class this is a pure virtual function.
See also
Returns the data associated with
url
.It is up to the application that requests the data to delete the QIODevice when done with it.
If there is no cache for
url
, the url is invalid, or if there is an internal cache errorNone
is returned.In the base class this is a pure virtual function.
See also
Inserts the data in
device
and the prepared meta data into the cache. After this function is called the data and meta data should be retrievable usingdata()
andmetaData()
.To cancel a prepared inserted call
remove()
on the metadata’s url.In the base class this is a pure virtual function.
Returns the meta data for the url
url
.If the url is valid and the cache contains the data for url, a valid
QNetworkCacheMetaData
is returned.In the base class this is a pure virtual function.
See also
- abstract prepare(metaData)¶
- Parameters:
metaData –
QNetworkCacheMetaData
- Return type:
Returns the device that should be populated with the data for the cache item
metaData
. When all of the data has been writteninsert()
should be called. IfmetaData
is invalid or the url in the metadata is invalidNone
is returned.The cache owns the device and will take care of deleting it when it is inserted or removed.
To cancel a prepared inserted call
remove()
on the metadata’s url.In the base class this is a pure virtual function.
See also
Removes the cache entry for
url
, returning true if success otherwise false.In the base class this is a pure virtual function.
- abstract updateMetaData(metaData)¶
- Parameters:
metaData –
QNetworkCacheMetaData
Updates the cache meta date for the
metaData
‘s url tometaData
If the cache does not contains a cache item for the url then no action is taken.
In the base class this is a pure virtual function.
See also