- flushWithCompletionHandler:
- getTasksWithCompletionHandler:
- getAllTasksWithCompletionHandler:
- invalidateAndCancel
- resetWithCompletionHandler:
sessionDescription
Availability 有効性
Technology
- (void)finishTasksAndInvalidate;
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:
method on its delegate, then breaks references to the delegate and callback objects. After invalidation, session objects cannot be reused.
このメソッドは、タスクが終了するのを待つことなく直ぐに戻ります。一旦あるセッションが無効にされるならば、新しいタスクはそのセッションにおいて作成されることができません、しかし既存のタスクは完了するまで継続します。最後のタスクが終了するそしてセッションがそれらのタスクに関連する最後の委任先呼び出しをする後に、セッションはURLSession:
メソッドをそれの委任先上で呼び出します、それから委任先とコールバックオブジェクトへの参照を壊します。無効化の後、セッションオブジェクトは再利用されることはできません。
To cancel all outstanding tasks, call invalidate
instead.
全ての未解決タスクを取り消すには、invalidate
を代わりに呼び出してください。
Important 重要
Calling this method on the session returned by the shared
method has no effect.
このメソッドをshared
メソッドによって返されるセッション上で呼び出すことは、効果を持ちません。
- flushWithCompletionHandler:
- getTasksWithCompletionHandler:
- getAllTasksWithCompletionHandler:
- invalidateAndCancel
- resetWithCompletionHandler:
sessionDescription