Package net.openhft.lang.thread

Examples of net.openhft.lang.thread.NamedThreadFactory


    AbstractChannelReplicator(String name, AbstractReplicationBuilder<?> replicationBuilder,
                              int maxEntrySizeBytes)
            throws IOException {
        executorService = Executors.newSingleThreadExecutor(
                new NamedThreadFactory(name, true));
        selector = Selector.open();
        closeables.add(selector);

        throttler = replicationBuilder.throttle(DAYS) > 0 ?
                new Throttler(selector,
View Full Code Here

TOP

Related Classes of net.openhft.lang.thread.NamedThreadFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.