func urlSessionDidFinishEvents (forBackgroundURLSession : URLSession)
Tells the delegate that all messages enqueued for a session have been delivered.
委任先に、あるセッションに対してエンキューされる全てのメッセージが配達され終わったことを伝えます。
Availability 有効性
Technology
optional func urlSession(_ session: URLSession
,
didBecomeInvalidWithError error: Error
?)
session
The session object that was invalidated. 無効にされたセッションオブジェクト。
error
The error that caused invalidation, or nil
if the invalidation was explicit.
無効化を引き起こしたエラー、またはnil
、もし無効化が明示的だったならば。
If you invalidate a session by calling its finish
method, the session waits until after the final task in the session finishes or fails before calling this delegate method. If you call the invalidate
method, the session calls this delegate method immediately.
あなたがあるセッションをそれのfinish
メソッドを呼び出すことによって無効にするならば、セッションは、セッションの中の最後のタスクが終了するかまたは失敗する後、この委任先メソッドの呼び出しの前まで待機します。あなたがinvalidate
メソッドを呼び出すならば、セッションはこの委任先メソッドを直ぐに呼び出します。
func urlSessionDidFinishEvents (forBackgroundURLSession : URLSession)