Obsolete Members for QFuture

以下成員源於類 QFuture 被棄用。 提供它們是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它們。

公共函數

(deprecated (6.0)) bool isPaused () const
(deprecated (6.0)) void pause ()
(deprecated (6.0)) void setPaused (bool paused )
(deprecated (6.0)) void togglePaused ()

成員函數文檔編製

bool QFuture:: isPaused () const

This function is deprecated since 6.0. We strongly advise against using it in new code.

使用 isSuspending () 或 isSuspended () 代替。

返迴 true if the asynchronous computation has been paused with the pause () function; otherwise returns false .

Be aware that the computation may still be running even though this function returns true 。見 setPaused () for more details. To check if pause actually took effect, use isSuspended () 代替。

另請參閱 toggleSuspended () 和 isSuspended ().

void QFuture:: pause ()

This function is deprecated since 6.0. We strongly advise against using it in new code.

使用 suspend () 代替。

Pauses the asynchronous computation represented by this future. This is a convenience method that simply calls setPaused (true)。

另請參閱 resume ().

void QFuture:: setPaused ( bool paused )

This function is deprecated since 6.0. We strongly advise against using it in new code.

使用 setSuspended () 代替。

paused is true, this function pauses the asynchronous computation represented by the future. If the computation is already paused, this function does nothing. Any QFutureWatcher object that is watching this future will stop delivering progress and result ready signals while the future is paused. Signal delivery will continue once the future is resumed.

paused is false, this function resumes the asynchronous computation. If the computation was not previously paused, this function does nothing.

Be aware that not all computations can be paused. For example, the future returned by QtConcurrent::run() cannot be paused; but the future returned by QtConcurrent::mappedReduced() can.

另請參閱 isPaused (), suspend (), resume (),和 toggleSuspended ().

void QFuture:: togglePaused ()

This function is deprecated since 6.0. We strongly advise against using it in new code.

使用 toggleSuspended () 代替。

Toggles the paused state of the asynchronous computation. In other words, if the computation is currently paused, calling this function resumes it; if the computation is running, it is paused. This is a convenience method for calling setPaused (! isPaused ()).

另請參閱 setSuspended (), suspend (),和 resume ().