Tutorial: Writing server task plugin
|
function | description |
---|---|
ServerTaskPlugin() | The constructor is called immediately after startup of the server in order to identify all available server task plugins. |
ServerTaskPlugin::initTask() | Initialises/starts the task. |
ServerTaskPlugin::name() | This function returns the name of the task. This name may be used in conjunction with Task.cfg or QtopiaServerApplication::qtopiaTask(). |
ServerTaskPlugin::demand() | If this function returns false this task will be started automatically unless otherwise specified byTask.cfg. If this function returns true this task is only started if another server task explicitly requests a reference to it. |
The subsequent example task implementation does nothing and is only provided for the sake of completeness:
#include "exampletask.h"
#include <qtopiaglobal.h>
#include <QDebug>
class ExampleTask: public QObject
{
public:
ExampleTask( QObject* parent = 0 ) : QObject(parent)
{
//server task code
}
~ExampleTask()
{
}
};
Due to the fact that server task plugins don't have access to symbols in the server and vice versa some limitations apply:
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt qtextended4.4 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com