/
githubmirror
/
RxJava
Обзор
Документация
Войти
/
githubmirror
/
RxJava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
src/main/java/io/reactivex/rxjava4/internal/virtual/VirtualResumable.java
83 строки
3 KB
David Karnok
4.x: Cleanup: Serial annotation, getFirst usage (#8180)
26 июн 2026, 00:06
Не верифицирован
26 июн 2026, 00:06
f57ca39
Код
Авторство
О чём код?
/* * Copyright (c) 2016-present, RxJava Contributors. * * 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 * * http://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.reactivex.rxjava4.internal.virtual; import java.io.Serial; import java.util.concurrent.atomic.AtomicReference; import java.util.concurrent.locks.LockSupport; /** * Fundamental primitive for suspending and resuming a Thread. * @since 4.0.0 */ public class VirtualResumable extends AtomicReference<Object> { @Serial private static final long serialVersionUID = -3462467580179834124L; /** * Indicates the {@link #await()} can resume without parking the virtual thread. */ static final Object READY = "Ready"; /** * Wait for a resumption by a {@link #resume()} call. * This method won't suspend the current virtual thread if there was already * a resume indication. */ public final void await() { Thread toUnpark = Thread.currentThread(); for (;;) { var current = get(); if (current == READY) { break; } if (current != null && current != toUnpark) { throw new IllegalStateException("Only one (Virtual)Thread can await this VirtualResumable!"); } if (compareAndSet(null, toUnpark)) { LockSupport.park(); // we don't just break here because park() can wake up spuriously // if we got a proper resume, get() == READY and the loop will quit above } } // clear the resume indicator so that the next await call will park without a resume() clear(); } /** * Clears any resumption/ready object from this VirtualResumable. */ public final void clear() { getAndSet(null); } /** * Trigger a resumption of a virtual thread suspended in {@link #await()}. * This method can be called from multiple threads and multiple times. * Note that this method is not guaranteed to act as a full memory barrier * if there was a resume() call previously and the suspend side didn't suspend yet. */ public final void resume() { if (get() != READY) { var old = getAndSet(READY); if (old != READY) { LockSupport.unpark((Thread)old); } } } }