@ -20,7 +20,10 @@ public protocol JobRunnerType {
func appDidFinishLaunching ( using dependencies : Dependencies )
func appDidBecomeActive ( using dependencies : Dependencies )
func startNonBlockingQueues ( using dependencies : Dependencies )
func stopAndClearPendingJobs ( exceptForVariant : Job . Variant ? , using dependencies : Dependencies , onComplete : ( ( ) -> ( ) ) ? )
// / S t o p s a n d c l e a r s a n y p e n d i n g j o b s e x c e p t f o r t h e s p e c i f i e d v a r i a n t , t h e ` o n C o m p l e t e ` c l o s u r e w i l l b e c a l l e d o n c e c o m p l e t e p r o v i d i n g a f l a g i n d i c a t i n g w h e t h e r a n y a d d i t i o n a k
// / p r o c e s s i n g w a s n e e d e d b e f o r e t h e c l o s u r e w a s c a l l e d ( i f n o t t h e n t h e c l o s u r e w i l l b e c a l l e d s y n c h r o n o u s l y )
func stopAndClearPendingJobs ( exceptForVariant : Job . Variant ? , using dependencies : Dependencies , onComplete : ( ( Bool ) -> ( ) ) ? )
// MARK: - J o b S c h e d u l i n g
@ -577,7 +580,7 @@ public final class JobRunner: JobRunnerType {
public func stopAndClearPendingJobs (
exceptForVariant : Job . Variant ? ,
using dependencies : Dependencies ,
onComplete : ( ( ) -> ( ) ) ?
onComplete : ( ( Bool ) -> ( ) ) ?
) {
// I n f o r m t h e J o b R u n n e r t h a t i t c a n ' t s t a r t a n y q u e u e s ( t h i s i s t o p r e v e n t q u e u e s f r o m
// r e s c h e d u l i n g t h e m s e l v e s w h i l e i n t h e b a c k g r o u n d , w h e n t h e a p p r e s t a r t s o r b e c o m e s a c t i v e
@ -602,7 +605,7 @@ public final class JobRunner: JobRunnerType {
let queue : JobQueue = queues . wrappedValue [ exceptForVariant ] ,
queue . isRunning . wrappedValue = = true
else {
onComplete ? ( )
onComplete ? ( false )
return
}
@ -619,7 +622,7 @@ public final class JobRunner: JobRunnerType {
}
guard state != . success else { return }
onComplete ? ( )
onComplete ? ( true )
queue ? . onQueueDrained = oldQueueDrained
queue ? . stopAndClearPendingJobs ( )
}
@ -629,7 +632,7 @@ public final class JobRunner: JobRunnerType {
queue . onQueueDrained = { [ weak self , weak queue ] in
oldQueueDrained ? ( )
queue ? . onQueueDrained = oldQueueDrained
onComplete ? ( )
onComplete ? ( true )
self ? . shutdownBackgroundTask . mutate { $0 = nil }
}
@ -1887,7 +1890,7 @@ public extension JobRunner {
static func stopAndClearPendingJobs (
exceptForVariant : Job . Variant ? = nil ,
using dependencies : Dependencies ,
onComplete : ( ( ) -> ( ) ) ? = nil
onComplete : ( ( Bool ) -> ( ) ) ? = nil
) {
instance . stopAndClearPendingJobs ( exceptForVariant : exceptForVariant , using : dependencies , onComplete : onComplete )
}