session-ios/SessionMessagingKit/Jobs/Job.swift

11 lines
194 B
Swift
Raw Normal View History

2020-11-10 05:48:47 +01:00
@objc(SNJob)
2020-11-08 03:12:38 +01:00
public protocol Job : class {
var delegate: JobDelegate? { get set }
var failureCount: UInt { get set }
static var maxFailureCount: UInt { get }
func execute()
}