mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
514 B
Swift
23 lines
514 B
Swift
5 years ago
|
import SessionUtilities
|
||
|
|
||
|
// TODO: Implementation
|
||
|
|
||
|
public final class AttachmentDownloadJob : NSObject, Job, NSCoding { // NSObject/NSCoding conformance is needed for YapDatabase compatibility
|
||
|
|
||
|
// MARK: Settings
|
||
|
private static let maxRetryCount: UInt = 20
|
||
|
|
||
|
// MARK: Coding
|
||
|
public init?(coder: NSCoder) { }
|
||
|
|
||
|
public func encode(with coder: NSCoder) { }
|
||
|
|
||
|
// MARK: Running
|
||
|
public func execute() { }
|
||
|
|
||
|
private func handleSuccess() { }
|
||
|
|
||
|
private func handleFailure(error: Error) { }
|
||
|
}
|
||
|
|