diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-07 19:35:26 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-09 11:09:47 +0900 |
commit | 59bbe67c490ba4e993dd332208fc8cbeeb933c71 (patch) | |
tree | 0f018118e7e8c54def82f2b76eca0e51ad00ba07 /jobs | |
parent | 10a32c47a95b8438309841c4cb63159c4799bb8b (diff) | |
download | libquotient-59bbe67c490ba4e993dd332208fc8cbeeb933c71.tar.gz libquotient-59bbe67c490ba4e993dd332208fc8cbeeb933c71.zip |
isJobRunning() facility function
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/basejob.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jobs/basejob.h b/jobs/basejob.h index e3a379fa..2f75c095 100644 --- a/jobs/basejob.h +++ b/jobs/basejob.h @@ -51,6 +51,7 @@ namespace QMatrixClient * (which BaseJob used to inherit from). */ enum StatusCode { NoError = 0 // To be compatible with Qt conventions , Success = 0 + , Pending = 1 , ErrorLevel = 100 // Errors have codes starting from this , NetworkError = 100 , JsonParseError @@ -279,4 +280,9 @@ namespace QMatrixClient class Private; QScopedPointer<Private> d; }; + + inline bool isJobRunning(BaseJob* job) + { + return job && job->error() == BaseJob::Pending; + } } // namespace QMatrixClient |