ওরাকল সহ এটির জন্য একটি মুক্ত আরএফই রয়েছে । ওরাকল কর্মচারীর মন্তব্য থেকে মনে হয় তারা বিষয়টি বুঝতে পারে না এবং ঠিক করে না। এটি জেডিকে সমর্থন করার জন্য মরে যাওয়া সহজ বিষয়গুলির মধ্যে একটি (পিছনে সামঞ্জস্যতা ভঙ্গ না করে) তাই আরএফই ভুল বোঝাবুঝি হয়ে যায় এটা এক ধরণের লজ্জার বিষয়।
নির্দেশিত হিসাবে আপনার নিজের থ্রেডফ্যাক্টরি বাস্তবায়ন করা উচিত । আপনি যদি এই উদ্দেশ্যে কেবল পেয়ারা বা অ্যাপাচি কমন্সে টানতে না চান তবে আমি এখানে এমন একটি ThreadFactory
বাস্তবায়ন সরবরাহ করব যা আপনি ব্যবহার করতে পারেন। "পুল" ব্যতীত অন্য কোনও থ্রেড নামের উপসর্গটি সেট করার ক্ষমতা ব্যতীত আপনি জেডিকে থেকে যা পান তার ঠিক এটি মিল।
package org.demo.concurrency;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.atomic.AtomicInteger;
/**
* ThreadFactory with the ability to set the thread name prefix.
* This class is exactly similar to
* {@link java.util.concurrent.Executors#defaultThreadFactory()}
* from JDK8, except for the thread naming feature.
*
* <p>
* The factory creates threads that have names on the form
* <i>prefix-N-thread-M</i>, where <i>prefix</i>
* is a string provided in the constructor, <i>N</i> is the sequence number of
* this factory, and <i>M</i> is the sequence number of the thread created
* by this factory.
*/
public class ThreadFactoryWithNamePrefix implements ThreadFactory {
// Note: The source code for this class was based entirely on
// Executors.DefaultThreadFactory class from the JDK8 source.
// The only change made is the ability to configure the thread
// name prefix.
private static final AtomicInteger poolNumber = new AtomicInteger(1);
private final ThreadGroup group;
private final AtomicInteger threadNumber = new AtomicInteger(1);
private final String namePrefix;
/**
* Creates a new ThreadFactory where threads are created with a name prefix
* of <code>prefix</code>.
*
* @param prefix Thread name prefix. Never use a value of "pool" as in that
* case you might as well have used
* {@link java.util.concurrent.Executors#defaultThreadFactory()}.
*/
public ThreadFactoryWithNamePrefix(String prefix) {
SecurityManager s = System.getSecurityManager();
group = (s != null) ? s.getThreadGroup()
: Thread.currentThread().getThreadGroup();
namePrefix = prefix + "-"
+ poolNumber.getAndIncrement()
+ "-thread-";
}
@Override
public Thread newThread(Runnable r) {
Thread t = new Thread(group, r,
namePrefix + threadNumber.getAndIncrement(),
0);
if (t.isDaemon()) {
t.setDaemon(false);
}
if (t.getPriority() != Thread.NORM_PRIORITY) {
t.setPriority(Thread.NORM_PRIORITY);
}
return t;
}
}
আপনি যখন এটি ব্যবহার করতে চান আপনি সহজভাবে এই সুযোগটি গ্রহণ করবেন যে সমস্ত Executors
পদ্ধতি আপনাকে নিজের সরবরাহ করতে দেয় ThreadFactory
।
এই
Executors.newSingleThreadExecutor();
একটি এক্সিকিউটার সার্ভিস দেবে যেখানে থ্রেডগুলির নাম দেওয়া হয়েছে pool-N-thread-M
তবে ব্যবহার করে
Executors.newSingleThreadExecutor(new ThreadFactoryWithNamePrefix("primecalc"));
থ্রেডের নাম দেওয়া হয়েছে এমন একটি এক্সিকিউটার সার্ভিস পাবেন primecalc-N-thread-M
। ভাল খবর!