Changed maximumEntries to correct int rather than long
[controller.git] / opendaylight / netconf / config-persister-impl / src / main / java / org / opendaylight / controller / netconf / persist / impl / Util.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.netconf.persist.impl;
10
11 import java.util.concurrent.Executors;
12 import java.util.concurrent.ScheduledExecutorService;
13 import java.util.concurrent.ThreadFactory;
14
15 public final class Util {
16
17     public static ScheduledExecutorService getExecutorServiceWithThreadName(final String threadNamePrefix,
18             int threadCount) {
19         return Executors.newScheduledThreadPool(threadCount, new ThreadFactory() {
20
21             private int i = 1;
22
23             @Override
24             public Thread newThread(Runnable r) {
25                 Thread thread = new Thread(r);
26                 thread.setName(threadNamePrefix + ":" + i++);
27                 return thread;
28             }
29         });
30     }
31 }