aboutsummaryrefslogtreecommitdiff
path: root/jobs/basejob.h
diff options
context:
space:
mode:
Diffstat (limited to 'jobs/basejob.h')
-rw-r--r--jobs/basejob.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/jobs/basejob.h b/jobs/basejob.h
index 95cf4232..f1ad66d1 100644
--- a/jobs/basejob.h
+++ b/jobs/basejob.h
@@ -45,8 +45,20 @@ namespace QMatrixClient
void start() override;
- enum ErrorCode { NetworkError = KJob::UserDefinedError, JsonParseError, UserDefinedError };
-
+ enum ErrorCode { NetworkError = KJob::UserDefinedError,
+ JsonParseError, TimeoutError, UserDefinedError };
+
+ signals:
+ /**
+ * Emitted together with KJob::result() but only if there's no error.
+ */
+ void success(BaseJob*);
+ /**
+ * Emitted together with KJob::result() if there's an error.
+ * Same as result(), this won't be emitted in case of kill(Quietly).
+ */
+ void failure(BaseJob*);
+
protected:
ConnectionData* connection() const;