qfuturesynchronizer.cpp: fix whitespace errors
Change-Id: I106ae536f1411939c3785f0a97c39752db59b19c Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
b1d2b80a90
commit
26f238a80d
@ -52,20 +52,20 @@
|
|||||||
one or more QFuture objects. Futures are added using the addFuture() or
|
one or more QFuture objects. Futures are added using the addFuture() or
|
||||||
setFuture() functions. The futures() function returns a list of futures.
|
setFuture() functions. The futures() function returns a list of futures.
|
||||||
Use clearFutures() to remove all futures from the QFutureSynchronizer.
|
Use clearFutures() to remove all futures from the QFutureSynchronizer.
|
||||||
|
|
||||||
The waitForFinished() function waits for all futures to finish.
|
The waitForFinished() function waits for all futures to finish.
|
||||||
The destructor of QFutureSynchronizer calls waitForFinished(), providing
|
The destructor of QFutureSynchronizer calls waitForFinished(), providing
|
||||||
an easy way to ensure that all futures have finished before returning from
|
an easy way to ensure that all futures have finished before returning from
|
||||||
a function:
|
a function:
|
||||||
|
|
||||||
\snippet code/src_corelib_thread_qfuturesynchronizer.cpp 0
|
\snippet code/src_corelib_thread_qfuturesynchronizer.cpp 0
|
||||||
|
|
||||||
The behavior of waitForFinished() can be changed using the
|
The behavior of waitForFinished() can be changed using the
|
||||||
setCancelOnWait() function. Calling setCancelOnWait(true) will cause
|
setCancelOnWait() function. Calling setCancelOnWait(true) will cause
|
||||||
waitForFinished() to cancel all futures before waiting for them to finish.
|
waitForFinished() to cancel all futures before waiting for them to finish.
|
||||||
You can query the status of the cancel-on-wait feature using the
|
You can query the status of the cancel-on-wait feature using the
|
||||||
cancelOnWait() function.
|
cancelOnWait() function.
|
||||||
|
|
||||||
\sa QFuture, QFutureWatcher, {Concurrent Programming}{Qt Concurrent}
|
\sa QFuture, QFutureWatcher, {Concurrent Programming}{Qt Concurrent}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -80,26 +80,26 @@
|
|||||||
|
|
||||||
Constructs a QFutureSynchronizer and begins watching \a future by calling
|
Constructs a QFutureSynchronizer and begins watching \a future by calling
|
||||||
addFuture().
|
addFuture().
|
||||||
|
|
||||||
\sa addFuture()
|
\sa addFuture()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\fn QFutureSynchronizer::~QFutureSynchronizer()
|
\fn QFutureSynchronizer::~QFutureSynchronizer()
|
||||||
|
|
||||||
Calls waitForFinished() function to ensure that all futures have finished
|
Calls waitForFinished() function to ensure that all futures have finished
|
||||||
before destroying this QFutureSynchronizer.
|
before destroying this QFutureSynchronizer.
|
||||||
|
|
||||||
\sa waitForFinished()
|
\sa waitForFinished()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\fn void QFutureSynchronizer::setFuture(const QFuture<T> &future)
|
\fn void QFutureSynchronizer::setFuture(const QFuture<T> &future)
|
||||||
|
|
||||||
Sets \a future to be the only future managed by this QFutureSynchronizer.
|
Sets \a future to be the only future managed by this QFutureSynchronizer.
|
||||||
This is a convenience function that calls waitForFinished(),
|
This is a convenience function that calls waitForFinished(),
|
||||||
then clearFutures(), and finally passes \a future to addFuture().
|
then clearFutures(), and finally passes \a future to addFuture().
|
||||||
|
|
||||||
\sa addFuture(), waitForFinished(), clearFutures()
|
\sa addFuture(), waitForFinished(), clearFutures()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -107,7 +107,7 @@
|
|||||||
\fn void QFutureSynchronizer::addFuture(const QFuture<T> &future)
|
\fn void QFutureSynchronizer::addFuture(const QFuture<T> &future)
|
||||||
|
|
||||||
Adds \a future to the list of managed futures.
|
Adds \a future to the list of managed futures.
|
||||||
|
|
||||||
\sa futures()
|
\sa futures()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -116,7 +116,7 @@
|
|||||||
|
|
||||||
Waits for all futures to finish. If cancelOnWait() returns true, each
|
Waits for all futures to finish. If cancelOnWait() returns true, each
|
||||||
future is canceled before waiting for them to finish.
|
future is canceled before waiting for them to finish.
|
||||||
|
|
||||||
\sa cancelOnWait(), setCancelOnWait()
|
\sa cancelOnWait(), setCancelOnWait()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -124,7 +124,7 @@
|
|||||||
\fn void QFutureSynchronizer::clearFutures()
|
\fn void QFutureSynchronizer::clearFutures()
|
||||||
|
|
||||||
Removes all managed futures from this QFutureSynchronizer.
|
Removes all managed futures from this QFutureSynchronizer.
|
||||||
|
|
||||||
\sa addFuture(), setFuture()
|
\sa addFuture(), setFuture()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -132,13 +132,13 @@
|
|||||||
\fn QList<QFuture<T> > QFutureSynchronizer::futures() const
|
\fn QList<QFuture<T> > QFutureSynchronizer::futures() const
|
||||||
|
|
||||||
Returns a list of all managed futures.
|
Returns a list of all managed futures.
|
||||||
|
|
||||||
\sa addFuture(), setFuture()
|
\sa addFuture(), setFuture()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\fn void QFutureSynchronizer::setCancelOnWait(bool enabled)
|
\fn void QFutureSynchronizer::setCancelOnWait(bool enabled)
|
||||||
|
|
||||||
Enables or disables the cancel-on-wait feature based on the \a enabled
|
Enables or disables the cancel-on-wait feature based on the \a enabled
|
||||||
argument. If \a enabled is true, the waitForFinished() function will cancel
|
argument. If \a enabled is true, the waitForFinished() function will cancel
|
||||||
all futures before waiting for them to finish.
|
all futures before waiting for them to finish.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user