qbit icon indicating copy to clipboard operation
qbit copied to clipboard

enable same thread access checker for SendQueue processor

Open RichardHightower opened this issue 8 years ago • 0 comments


        if (serviceThread.get() !=null && serviceThread.get() == Thread.currentThread()) {
            mgmt.increment(name)

        } else {
            val thread = Thread.currentThread()
            logger.info("Getting called from another thread {} not {}", thread.name, serviceThread.get()?.name ?: "not set")
        }

RichardHightower avatar May 05 '16 22:05 RichardHightower