Add a few comments
This commit is contained in:
parent
b57c71b1c9
commit
3c40f64fb7
|
@ -53,8 +53,10 @@ internal class TimelineEventDecryptor(
|
||||||
|
|
||||||
private var executor: ExecutorService? = null
|
private var executor: ExecutorService? = null
|
||||||
|
|
||||||
private val existingRequests = HashSet<String>()
|
// Set of eventIds which are currently decrypting
|
||||||
private val unknownSessionsFailure = HashMap<String, MutableList<String>>()
|
private val existingRequests = mutableSetOf<String>()
|
||||||
|
// sessionId -> list of eventIds
|
||||||
|
private val unknownSessionsFailure = mutableMapOf<String, MutableList<String>>()
|
||||||
|
|
||||||
fun start() {
|
fun start() {
|
||||||
executor = Executors.newSingleThreadExecutor()
|
executor = Executors.newSingleThreadExecutor()
|
||||||
|
|
Loading…
Reference in New Issue