session-ios/SessionMessagingKit/Jobs/Job.swift

13 lines
271 B
Swift
Raw Normal View History

2020-11-10 05:48:47 +01:00
@objc(SNJob)
2021-05-03 07:13:18 +02:00
public protocol Job : NSCoding {
2020-11-08 03:12:38 +01:00
var delegate: JobDelegate? { get set }
2020-11-17 06:23:13 +01:00
var id: String? { get set }
2020-11-08 03:12:38 +01:00
var failureCount: UInt { get set }
static var collection: String { get }
2020-11-08 03:12:38 +01:00
static var maxFailureCount: UInt { get }
func execute()
}