session-ios/SessionMessagingKit/Jobs/Job.swift

12 lines
236 B
Swift

@objc(SNJob)
public protocol Job : class, NSCoding {
var delegate: JobDelegate? { get set }
var id: String? { get set }
var failureCount: UInt { get set }
static var maxFailureCount: UInt { get }
func execute()
}