session-ios/SessionMessagingKit/Jobs/Job.swift
nielsandriesse 82127bfe4d Clean
2020-11-10 15:48:47 +11:00

11 lines
194 B
Swift

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