• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdepim API Reference
  • KDE Home
  • Contact Us
 

mailcommon

  • sources
  • kde-4.12
  • kdepim
  • mailcommon
  • job
jobscheduler.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004 David Faure <faure@kde.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16  *
17  * In addition, as a special exception, the copyright holders give
18  * permission to link the code of this program with any edition of
19  * the Qt library by Trolltech AS, Norway (or with modified versions
20  * of Qt that use the same license as Qt), and distribute linked
21  * combinations including the two. You must obey the GNU General
22  * Public License in all respects for all of the code used other than
23  * Qt. If you modify this file, you may extend this exception to
24  * your version of the file, but you are not obligated to do so. If
25  * you do not wish to do so, delete this exception statement from
26  * your version.
27  */
28 
29 #ifndef MAILCOMMON_JOBSCHEDULER_H
30 #define MAILCOMMON_JOBSCHEDULER_H
31 
32 #include "mailcommon_export.h"
33 
34 #include <QObject>
35 
36 #include <QTimer>
37 
38 #include "folderjob.h"
39 #include <akonadi/collection.h>
40 // If this define is set, JobScheduler will show debug output, and related kmkernel timers will be shortened
41 // This is for debugging purposes only, don't commit with it.
42 //#define DEBUG_SCHEDULER
43 
44 namespace MailCommon {
45 
46 class FolderJob;
47 class ScheduledJob;
48 
54 class MAILCOMMON_EXPORT ScheduledTask {
55 public:
59  ScheduledTask( const Akonadi::Collection & folder, bool immediate );
60  virtual ~ScheduledTask();
61 
69  virtual ScheduledJob* run() = 0;
70 
75  virtual int taskTypeId() const = 0;
76 
78  Akonadi::Collection folder() const { return mCurrentFolder; }
79 
80  bool isImmediate() const { return mImmediate; }
81 
82 private:
83  Akonadi::Collection mCurrentFolder;
84  bool mImmediate;
85 };
86 
95 class MAILCOMMON_EXPORT JobScheduler : public QObject
96 {
97  Q_OBJECT
98 public:
99  explicit JobScheduler( QObject* parent );
100  ~JobScheduler();
101 
104  void registerTask( ScheduledTask* task );
105 
106  // D-Bus calls, called from KMKernel
107  void pause();
108  void resume();
109 
110 private slots:
112  void slotRunNextJob();
113 
115  void slotJobFinished();
116 
117 private:
118  void restartTimer();
119  void interruptCurrentTask();
120  void runTaskNow( ScheduledTask* task );
121  typedef QList<ScheduledTask *> TaskList;
122  void removeTask( TaskList::Iterator& it );
123 private:
124  TaskList mTaskList; // FIFO of tasks to be run
125 
126  QTimer mTimer;
127  int mPendingImmediateTasks;
128 
130  ScheduledTask* mCurrentTask;
131  ScheduledJob* mCurrentJob;
132 };
133 
137 class MAILCOMMON_EXPORT ScheduledJob : public FolderJob
138 {
139 public:
140  ScheduledJob( const Akonadi::Collection & folder, bool immediate );
141  ~ScheduledJob();
142 
143 protected:
144  bool mImmediate;
145 };
146 
147 }
148 
149 #endif
MailCommon::ScheduledTask
A scheduled task is some information about a folder job that should be run later. ...
Definition: jobscheduler.h:54
QObject
MailCommon::FolderJob
Definition: folderjob.h:38
MailCommon::JobScheduler
The unique JobScheduler instance (owned by kmkernel) implements "background processing" of folder ope...
Definition: jobscheduler.h:95
mailcommon_export.h
MailCommon::ScheduledTask::folder
Akonadi::Collection folder() const
The folder which this task is about, 0 if it was deleted meanwhile.
Definition: jobscheduler.h:78
MAILCOMMON_EXPORT
#define MAILCOMMON_EXPORT
Definition: mailcommon_export.h:35
MailCommon::ScheduledJob::mImmediate
bool mImmediate
Definition: jobscheduler.h:144
MailCommon::ScheduledTask::isImmediate
bool isImmediate() const
Definition: jobscheduler.h:80
folderjob.h
MailCommon::ScheduledJob
Base class for scheduled jobs.
Definition: jobscheduler.h:137
QList
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:55:14 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

mailcommon

Skip menu "mailcommon"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdepim API Reference

Skip menu "kdepim API Reference"
  • akonadi_next
  • akregator
  • blogilo
  • calendarsupport
  • console
  •   kabcclient
  •   konsolekalendar
  • kaddressbook
  • kalarm
  •   lib
  • kdgantt2
  • kjots
  • kleopatra
  • kmail
  • knode
  • knotes
  • kontact
  • korgac
  • korganizer
  • ktimetracker
  • libkdepim
  • libkleo
  • libkpgp
  • mailcommon
  • messagelist
  • messageviewer

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal