Instance Method インスタンスメソッド

finishTasksAndInvalidate

Invalidates the session, allowing any outstanding tasks to finish. セッションを無効にします、あらゆる未解決タスクの終了を許可します。

Declaration 宣言

- (void)finishTasksAndInvalidate;

Discussion 議論

This method returns immediately without waiting for tasks to finish. Once a session is invalidated, new tasks cannot be created in the session, but existing tasks continue until completion. After the last task finishes and the session makes the last delegate call related to those tasks, the session calls the URLSession:didBecomeInvalidWithError: method on its delegate, then breaks references to the delegate and callback objects. After invalidation, session objects cannot be reused. このメソッドは、タスクが終了するのを待つことなく直ぐに戻ります。一旦あるセッションが無効にされるならば、新しいタスクはそのセッションにおいて作成されることができません、しかし既存のタスクは完了するまで継続します。最後のタスクが終了するそしてセッションがそれらのタスクに関連する最後の委任先呼び出しをする後に、セッションはURLSession:didBecomeInvalidWithError:メソッドをそれの委任先上で呼び出します、それから委任先とコールバックオブジェクトへの参照を壊します。無効化の後、セッションオブジェクトは再利用されることはできません。

To cancel all outstanding tasks, call invalidateAndCancel instead. 全ての未解決タスクを取り消すには、invalidateAndCancelを代わりに呼び出してください。

See Also 参照

Managing the Session セッションを管理する