session-ios/SessionMessagingKit/Jobs/Job.swift

10 lines
181 B
Swift
Raw Normal View History

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()
}