Akonadi::CollectionStatistics
#include <collectionstatistics.h>
Public Member Functions | |
CollectionStatistics () | |
CollectionStatistics (const CollectionStatistics &other) | |
~CollectionStatistics () | |
qint64 | count () const |
CollectionStatistics & | operator= (const CollectionStatistics &other) |
void | setCount (qint64 count) |
void | setSize (qint64 size) |
void | setUnreadCount (qint64 count) |
qint64 | size () const |
qint64 | unreadCount () const |
Detailed Description
Provides statistics information of a Collection.
This class contains information such as total number of items, number of new and unread items, etc.
This information might be expensive to obtain and is thus not included when fetching collections with a CollectionFetchJob. It can be retrieved separately using CollectionStatisticsJob.
Example:
This class is implicitly shared.
Definition at line 58 of file core/collectionstatistics.h.
Constructor & Destructor Documentation
◆ CollectionStatistics() [1/2]
CollectionStatistics::CollectionStatistics | ( | ) |
Creates a new collection statistics object.
Definition at line 25 of file core/collectionstatistics.cpp.
◆ CollectionStatistics() [2/2]
CollectionStatistics::CollectionStatistics | ( | const CollectionStatistics & | other | ) |
Creates a collection statistics object from an other
one.
Definition at line 30 of file core/collectionstatistics.cpp.
◆ ~CollectionStatistics()
|
default |
Destroys the collection statistics object.
Member Function Documentation
◆ count()
|
nodiscard |
Returns the number of items in this collection or -1
if this information is not available.
- See also
- setCount()
- unreadCount()
Definition at line 37 of file core/collectionstatistics.cpp.
◆ operator=()
CollectionStatistics & CollectionStatistics::operator= | ( | const CollectionStatistics & | other | ) |
Assigns other
to this statistics object and returns a reference to this one.
Definition at line 67 of file core/collectionstatistics.cpp.
◆ setCount()
void CollectionStatistics::setCount | ( | qint64 | count | ) |
Sets the number of items in this collection.
- Parameters
-
count The number of items.
- See also
- count()
Definition at line 42 of file core/collectionstatistics.cpp.
◆ setSize()
void CollectionStatistics::setSize | ( | qint64 | size | ) |
Sets the total size of the items in this collection.
- Parameters
-
size The total size of the items
- See also
- size()
- Since
- 4.3
Definition at line 62 of file core/collectionstatistics.cpp.
◆ setUnreadCount()
void CollectionStatistics::setUnreadCount | ( | qint64 | count | ) |
Sets the number of unread items in this collection.
- Parameters
-
count The number of unread messages.
- See also
- unreadCount()
Definition at line 52 of file core/collectionstatistics.cpp.
◆ size()
|
nodiscard |
Returns the total size of the items in this collection or -1
if this information is not available.
- See also
- setSize()
- Since
- 4.3
Definition at line 57 of file core/collectionstatistics.cpp.
◆ unreadCount()
|
nodiscard |
Returns the number of unread items in this collection or -1
if this information is not available.
- See also
- setUnreadCount()
- count()
Definition at line 47 of file core/collectionstatistics.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:31:59 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.