40 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlinx.coroutines;
 | |
| 
 | |
| import kotlin.Metadata;
 | |
| import kotlinx.coroutines.internal.Symbol;
 | |
| import kotlinx.coroutines.internal.ThreadLocalKt;
 | |
| 
 | |
| /* compiled from: EventLoop.common.kt */
 | |
| @Metadata(d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0002\b\u0004\bÀ\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002J\u000f\u0010\n\u001a\u0004\u0018\u00010\u0004H\u0000¢\u0006\u0002\b\u000bJ\r\u0010\f\u001a\u00020\rH\u0000¢\u0006\u0002\b\u000eJ\u0015\u0010\u000f\u001a\u00020\r2\u0006\u0010\u0003\u001a\u00020\u0004H\u0000¢\u0006\u0002\b\u0010R\u0014\u0010\u0003\u001a\u00020\u00048@X\u0080\u0004¢\u0006\u0006\u001a\u0004\b\u0005\u0010\u0006R\"\u0010\u0007\u001a\u0016\u0012\u0006\u0012\u0004\u0018\u00010\u00040\bj\n\u0012\u0006\u0012\u0004\u0018\u00010\u0004`\tX\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\u0011"}, d2 = {"Lkotlinx/coroutines/ThreadLocalEventLoop;", "", "()V", "eventLoop", "Lkotlinx/coroutines/EventLoop;", "getEventLoop$kotlinx_coroutines_core", "()Lkotlinx/coroutines/EventLoop;", "ref", "Ljava/lang/ThreadLocal;", "Lkotlinx/coroutines/internal/CommonThreadLocal;", "currentOrNull", "currentOrNull$kotlinx_coroutines_core", "resetEventLoop", "", "resetEventLoop$kotlinx_coroutines_core", "setEventLoop", "setEventLoop$kotlinx_coroutines_core", "kotlinx-coroutines-core"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| public final class ThreadLocalEventLoop {
 | |
|     public static final ThreadLocalEventLoop INSTANCE = new ThreadLocalEventLoop();
 | |
|     private static final ThreadLocal<EventLoop> ref = ThreadLocalKt.commonThreadLocal(new Symbol("ThreadLocalEventLoop"));
 | |
| 
 | |
|     private ThreadLocalEventLoop() {
 | |
|     }
 | |
| 
 | |
|     public final EventLoop getEventLoop$kotlinx_coroutines_core() {
 | |
|         ThreadLocal<EventLoop> threadLocal = ref;
 | |
|         EventLoop eventLoop = threadLocal.get();
 | |
|         if (eventLoop != null) {
 | |
|             return eventLoop;
 | |
|         }
 | |
|         EventLoop createEventLoop = EventLoopKt.createEventLoop();
 | |
|         threadLocal.set(createEventLoop);
 | |
|         return createEventLoop;
 | |
|     }
 | |
| 
 | |
|     public final EventLoop currentOrNull$kotlinx_coroutines_core() {
 | |
|         return ref.get();
 | |
|     }
 | |
| 
 | |
|     public final void resetEventLoop$kotlinx_coroutines_core() {
 | |
|         ref.set(null);
 | |
|     }
 | |
| 
 | |
|     public final void setEventLoop$kotlinx_coroutines_core(EventLoop eventLoop) {
 | |
|         ref.set(eventLoop);
 | |
|     }
 | |
| }
 |