/
niceSOFT
/
openjdk21
Обзор
Документация
Войти
/
niceSOFT
/
openjdk21
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/java.base/share/classes/jdk/internal/vm/ThreadContainer.java
116 строк
3 KB
Alan Bateman
8306647: Implementation of Structured Concurrency (Preview)
07 июн 2023, 09:41
07 июн 2023, 09:41
f1c7afc
Код
Авторство
О чём код?
/* * Copyright (c) 2021, 2023, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package jdk.internal.vm; import java.util.Objects; import java.util.stream.Stream; /** * A container of threads. */ public abstract class ThreadContainer extends StackableScope { /** * Creates a ThreadContainer. * @param shared true for a shared container, false for a container * owned by the current thread */ protected ThreadContainer(boolean shared) { super(shared); } /** * Return the name of this container, may be null. */ public String name() { return null; } /** * Returns the parent of this container or null if this is the root container. */ public ThreadContainer parent() { return ThreadContainers.parent(this); } /** * Return the stream of children of this container. */ public final Stream<ThreadContainer> children() { return ThreadContainers.children(this); } /** * Return a count of the number of threads in this container. */ public long threadCount() { return threads().mapToLong(e -> 1L).sum(); } /** * Returns a stream of the live threads in this container. */ public abstract Stream<Thread> threads(); /** * Invoked by Thread::start before the given Thread is started. */ public void onStart(Thread thread) { // do nothing } /** * Invoked when a Thread terminates or starting it fails. * * For a platform thread, this method is invoked by the thread itself when it * terminates. For a virtual thread, this method is invoked on its carrier * after the virtual thread has terminated. * * If starting the Thread failed then this method is invoked on the thread * that invoked onStart. */ public void onExit(Thread thread) { // do nothing } /** * The scoped values captured when the thread container was created. */ public ScopedValueContainer.BindingsSnapshot scopedValueBindings() { return null; } @Override public String toString() { String name = name(); if (name != null && name.indexOf('@') >= 0) { return name; } else { String id = Objects.toIdentityString(this); return (name != null) ? name + "/" + id : id; } } }