36 lines
885 B
Swift
36 lines
885 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
import Amplify
|
|
import AWSPluginsCore
|
|
import AWSS3
|
|
|
|
extension AWSS3StoragePlugin {
|
|
|
|
/// Resets the state of the plugin.
|
|
///
|
|
/// Calls the reset methods on the storage service and authentication service to clean up resources. Setting the
|
|
/// storage service, authentication service, and queue to nil to allow deallocation, then calls onComplete closure
|
|
/// to signal the reset has completed.
|
|
public func reset(onComplete: @escaping BasicClosure) {
|
|
if storageService != nil {
|
|
storageService.reset()
|
|
storageService = nil
|
|
}
|
|
if authService != nil {
|
|
authService = nil
|
|
}
|
|
|
|
if queue != nil {
|
|
queue = nil
|
|
}
|
|
|
|
onComplete()
|
|
}
|
|
}
|