Lines Matching refs:cancelled
87 are completed or running won't be cancelled, regardless of the value
92 returning. The remaining futures are cancelled.
323 finished running and cannot be cancelled then the method will return
324 ``False``, otherwise the call will be cancelled and the method will
327 .. method:: cancelled()
329 Return ``True`` if the call was successfully cancelled.
334 cancelled.
338 Return ``True`` if the call was successfully cancelled or finished
350 If the future is cancelled before completing then :exc:`.CancelledError`
364 If the future is cancelled before completing then :exc:`.CancelledError`
372 future as its only argument, when the future is cancelled or finishes
381 If the future has already completed or been cancelled, *fn* will be
393 If the method returns ``False`` then the :class:`Future` was cancelled,
398 If the method returns ``True`` then the :class:`Future` was not cancelled
441 completed (finished or cancelled futures) before the wait completed. The
458 | | future finishes or is cancelled. |
467 | | futures finish or are cancelled. |
474 they complete (finished or cancelled futures). Any futures given by *fs* that
497 Raised when a future is cancelled.