AIRA-android/app/src/main/java/sushi/hardcore/aira/background_service/FilesSender.kt

15 lines
487 B
Kotlin
Raw Normal View History

2021-05-06 22:57:47 +02:00
package sushi.hardcore.aira.background_service
import android.content.Context
import androidx.core.app.NotificationManagerCompat
class FilesSender(
val files: List<SendFile>,
context: Context,
notificationManager: NotificationManagerCompat,
sessionName: String
): FilesTransfer(context, notificationManager, sessionName) {
val lastChunkSizes = mutableListOf<Int>()
var nextChunk: ByteArray? = null
val msgQueue = mutableListOf<ByteArray>()
}