-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create threads named after its executor/event-loop (#3761)
* Create threads named after it's executor/event-loop * resolve backward compatibility issues Co-authored-by: Denis Stepanov <denis.stepanov@gmail.com>
- Loading branch information
1 parent
953304f
commit 2d7984f
Showing
10 changed files
with
230 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
runtime/src/main/java/io/micronaut/scheduling/executor/NamedThreadFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright 2017-2020 original authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.micronaut.scheduling.executor; | ||
|
||
import io.micronaut.core.annotation.Internal; | ||
import io.micronaut.core.util.ArgumentUtils; | ||
|
||
import java.util.concurrent.ThreadFactory; | ||
import java.util.concurrent.atomic.AtomicInteger; | ||
|
||
/** | ||
* Creates new named threads. | ||
* | ||
* @author Denis Stepanov | ||
* @since 2.0.1 | ||
*/ | ||
@Internal | ||
class NamedThreadFactory implements ThreadFactory { | ||
private final ThreadGroup group; | ||
private final AtomicInteger threadNumber = new AtomicInteger(1); | ||
private final String namePrefix; | ||
|
||
/** | ||
* The constructor. | ||
* | ||
* @param name new thread's prefix | ||
*/ | ||
NamedThreadFactory(String name) { | ||
ArgumentUtils.check("name", name).notNull(); | ||
SecurityManager s = System.getSecurityManager(); | ||
group = (s != null) ? s.getThreadGroup() : Thread.currentThread().getThreadGroup(); | ||
namePrefix = name + "-thread-"; | ||
} | ||
|
||
/** | ||
* Constructs a new {@code Thread}. | ||
* | ||
* @param runnable The Runnable | ||
* @return new thread | ||
*/ | ||
@Override | ||
public Thread newThread(Runnable runnable) { | ||
Thread newThread = new Thread(group, runnable, namePrefix + threadNumber.getAndIncrement(), 0); | ||
if (newThread.isDaemon()) { | ||
newThread.setDaemon(false); | ||
} | ||
if (newThread.getPriority() != Thread.NORM_PRIORITY) { | ||
newThread.setPriority(Thread.NORM_PRIORITY); | ||
} | ||
return newThread; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.