blob: a7d3ea3aa3184cbbd0330873c69f37aac3f11659 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// OperationObserver.swift
// MullvadVPN
//
// Created by pronebird on 06/07/2020.
// Copyright © 2020 Mullvad VPN AB. All rights reserved.
//
import Foundation
protocol OperationObserver {
associatedtype OperationType: OperationProtocol
func operationWillExecute(_ operation: OperationType)
func operationWillFinish(_ operation: OperationType)
func operationDidFinish(_ operation: OperationType)
}
|