Use a thread-safe list for downloads
Cette révision appartient à :
Parent
31731e8f26
révision
ec9c19ce7d
1 fichiers modifiés avec 2 ajouts et 2 suppressions
|
@ -4,9 +4,9 @@ import eu.kanade.tachiyomi.data.database.models.Chapter
|
|||
import eu.kanade.tachiyomi.data.source.model.Page
|
||||
import rx.Observable
|
||||
import rx.subjects.PublishSubject
|
||||
import java.util.*
|
||||
import java.util.concurrent.CopyOnWriteArrayList
|
||||
|
||||
class DownloadQueue : ArrayList<Download>() {
|
||||
class DownloadQueue : CopyOnWriteArrayList<Download>() {
|
||||
|
||||
private val statusSubject = PublishSubject.create<Download>()
|
||||
|
||||
|
|
Référencer dans un nouveau ticket