KIMAP Library
#include <idlejob.h>
Inherits KIMAP::Job.
Public Slots | |
void | stop () |
Signals | |
void | mailBoxMessageFlagsChanged (KIMAP::IdleJob *job, qint64 uid) |
void | mailBoxStats (KIMAP::IdleJob *job, const QString &mailBox, int messageCount, int recentCount) |
Public Member Functions | |
IdleJob (Session *session) | |
QString | lastMailBox () const |
int | lastMessageCount () const |
int | lastRecentCount () const |
Protected Member Functions | |
virtual void | doStart () |
virtual void | handleResponse (const Message &response) |
Detailed Description
Idles the connection to the IMAP server.
This job can be run while the client has no other use for the connection, and the server will send updates about the selected mailbox.
Note that although the server may send a variety of responses while the job is running (including EXPUNGE, for example), only RECENT and EXISTS responses are actually reported by this job.
The job also processes updates in pairs - if the server sends an EXISTS update but not a RECENT one (because another client is changing the mailbox contents), this job will not report the update.
It only makes sense to run this job when the session is in the selected state.
This job requires that the server supports the IDLE capability, defined in RFC 2177.
Member Function Documentation
QString KIMAP::IdleJob::lastMailBox | ( | ) | const |
The last mailbox status that was reported.
This is just the session's selected mailbox.
Definition at line 144 of file idlejob.cpp.
int KIMAP::IdleJob::lastMessageCount | ( | ) | const |
The last message count that was reported.
The server will send updates about the number of messages in the mailbox when that number changes. This is the last number it reported.
- Returns
- the last message count the server reported, or -1 if it has not reported a message count since the job started.
Definition at line 150 of file idlejob.cpp.
int KIMAP::IdleJob::lastRecentCount | ( | ) | const |
The last recent message count that was reported.
The server will send updates about the number of messages in the mailbox that are tagged with when that number changes. This is the last number it reported.
- Returns
- the last recent message count the server reported, or -1 if it has not reported a recent message count since the job started.
Definition at line 156 of file idlejob.cpp.
|
signal |
Signals that the server has notified that the some messages flags have changed.
- Parameters
-
job this object uid UID of message that has changed
- Since
- 4.12
|
signal |
Signals that the server has notified that the total and recent message counts have changed.
- Parameters
-
job this object mailBox the selected mailbox messageCount the new total message count reported by the server recentCount the new "recent message" count reported by the server
|
slot |
Stops the idle job.
Definition at line 83 of file idlejob.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 23:00:08 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.