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

io.infinicast.client.impl.messaging.receiver.HandlerPool Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package io.infinicast.client.impl.messaging.receiver;

import io.infinicast.Action;
import io.infinicast.ThreadPool;
public class HandlerPool {
    public void queueHandlerCall(final Action call) {
        ThreadPool.QueueUserWorkItem((state) -> {
            call.accept();
            ;
        }
        );
    }
    public void destroy() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy