diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2021-09-14 13:59:01 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2021-09-15 10:54:31 +0200 |
| commit | 76dd2c99bf92d608022efbf05ffcbfebda43e0c1 (patch) | |
| tree | 8cccb074a033089ac531e425f4a825df62b616c3 /ios/MullvadVPN/Operations/OperationProtocol.swift | |
| parent | e553d10b869c46e7ab922b86c32f4bd016e4fdac (diff) | |
| download | mullvadvpn-76dd2c99bf92d608022efbf05ffcbfebda43e0c1.tar.xz mullvadvpn-76dd2c99bf92d608022efbf05ffcbfebda43e0c1.zip | |
Operations: simplify AsyncOperation, remove advanced features
Diffstat (limited to 'ios/MullvadVPN/Operations/OperationProtocol.swift')
| -rw-r--r-- | ios/MullvadVPN/Operations/OperationProtocol.swift | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/ios/MullvadVPN/Operations/OperationProtocol.swift b/ios/MullvadVPN/Operations/OperationProtocol.swift deleted file mode 100644 index a41102c265..0000000000 --- a/ios/MullvadVPN/Operations/OperationProtocol.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// OperationProtocol.swift -// MullvadVPN -// -// Created by pronebird on 06/07/2020. -// Copyright © 2020 Mullvad VPN AB. All rights reserved. -// - -import Foundation - -protocol OperationProtocol: Operation { - /// Add operation observer - func addObserver<T: OperationObserver>(_ observer: T) where T.OperationType == Self - - /// Finish operation - func finish() - - /// Cancel operation - func cancel() -} |
