List of usage examples for java.util.concurrent ThreadFactory getClass
@HotSpotIntrinsicCandidate public final native Class<?> getClass();
From source file:ch.sourcepond.utils.mdcwrapper.impl.DefaultMdcWrapper.java
@Override public ThreadFactory wrap(final ThreadFactory pThreadFactory) { notNull(pThreadFactory, "ThreadFactory to be wrapped is null!"); return createProxyIfNecessary(pThreadFactory, pThreadFactory.getClass().getClassLoader(), ThreadFactory.class); }