All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pubnub.api.eventengine.EffectDispatcher.kt Maven / Gradle / Ivy

Go to download

PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter second!

There is a newer version: 10.2.0
Show newest version
package com.pubnub.api.eventengine

import org.slf4j.LoggerFactory
import java.util.concurrent.ConcurrentHashMap
import java.util.concurrent.ExecutorService
import java.util.concurrent.Executors

internal class EffectDispatcher(
    private val effectFactory: EffectFactory,
    private val effectSource: Source,
    private val managedEffects: ConcurrentHashMap = ConcurrentHashMap(),
    private val executorService: ExecutorService = Executors.newSingleThreadExecutor()
) {
    private val log = LoggerFactory.getLogger(EffectDispatcher::class.java)

    fun start() {
        executorService.submit {
            try {
                while (true) {
                    val invocation = effectSource.take()
                    dispatch(invocation)
                }
            } catch (e: InterruptedException) {
                Thread.currentThread().interrupt()
            }
        }
    }

    fun stop() {
        executorService.shutdownNow()
    }

    internal fun dispatch(effectInvocation: T) {
        log.trace("Dispatching effect: $effectInvocation")
        when (val type = effectInvocation.type) {
            is Cancel -> {
                managedEffects.remove(type.idToCancel)?.cancel()
            }

            is Managed -> {
                managedEffects.remove(effectInvocation.id)?.cancel()
                val managedEffect = effectFactory.create(effectInvocation) as? ManagedEffect ?: return
                managedEffects[effectInvocation.id] = managedEffect
                managedEffect.runEffect()
            }

            is NonManaged -> {
                effectFactory.create(effectInvocation)?.runEffect()
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy