KD SOAP
1.9.1
Main Page
Namespaces
Classes
Files
File List
src
KDSoapClient
KDSoapJob.h
1
/****************************************************************************
2
** Copyright (C) 2010-2020 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com.
3
** All rights reserved.
4
**
5
** This file is part of the KD Soap library.
6
**
7
** Licensees holding valid commercial KD Soap licenses may use this file in
8
** accordance with the KD Soap Commercial License Agreement provided with
9
** the Software.
10
**
11
**
12
** This file may be distributed and/or modified under the terms of the
13
** GNU Lesser General Public License version 2.1 and version 3 as published by the
14
** Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
15
**
16
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
17
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18
**
19
** Contact info@kdab.com if any conditions of this licensing are not
20
** clear to you.
21
**
22
**********************************************************************/
23
#ifndef KDSOAPJOB_H
24
#define KDSOAPJOB_H
25
26
#include "KDSoapGlobal.h"
27
28
#include <QtCore/QObject>
29
30
class
KDSoapMessage
;
31
class
KDSoapHeaders
;
32
65
class
KDSOAP_EXPORT
KDSoapJob
:
public
QObject
66
{
67
Q_OBJECT
68
public
:
74
explicit
KDSoapJob
(QObject *parent =
nullptr
);
75
79
~
KDSoapJob
();
80
85
KDSoapHeaders
requestHeaders()
const
;
86
93
void
setRequestHeaders(
const
KDSoapHeaders
&headers);
94
98
bool
isFault()
const
;
99
103
QString faultAsString()
const
;
104
109
KDSoapMessage
reply()
const
;
110
117
KDSoapHeaders
replyHeaders()
const
;
118
122
void
start();
123
128
void
setAutoDelete(
bool
enable);
129
130
Q_SIGNALS:
139
void
finished(
KDSoapJob
*job);
140
141
protected
:
146
Q_INVOKABLE
virtual
void
doStart() = 0;
147
152
void
emitFinished(
const
KDSoapMessage
&reply,
const
KDSoapHeaders
&replyHeaders);
153
154
private
:
155
class
Private;
156
Private *
const
d;
157
};
158
159
#endif // KDSOAPJOB_H
KDSoapHeaders
Definition:
KDSoapMessage.h:195
KDSoapMessage
Definition:
KDSoapMessage.h:41
KDSoapJob
KDSoapJob provides a job-based interface to handle asynchronous KD Soap calls.
Definition:
KDSoapJob.h:65
Klarälvdalens Datakonsult AB (KDAB)
"The Qt, C++ and OpenGL Experts"
https://www.kdab.com/
https://www.kdab.com/development-resources/qt-tools/kd-soap/