session-ios/SessionMessagingKit/Jobs/JobDelegate.swift

9 lines
218 B
Swift
Raw Normal View History

2020-11-08 03:12:38 +01:00
2020-11-10 05:48:47 +01:00
@objc(SNJobDelegate)
2020-11-08 03:12:38 +01:00
public protocol JobDelegate {
func handleJobSucceeded(_ job: Job)
func handleJobFailed(_ job: Job, with error: Error)
2020-11-18 05:36:51 +01:00
func handleJobFailedPermanently(_ job: Job, with error: Error)
2020-11-08 03:12:38 +01:00
}