38 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlinx.coroutines;
 | |
| 
 | |
| import kotlin.Metadata;
 | |
| import kotlin.Unit;
 | |
| 
 | |
| /* compiled from: JobSupport.kt */
 | |
| @Metadata(d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0003\n\u0000\n\u0002\u0010\u0002\n\u0000\b\u0000\u0018\u00002\u00020\u00012\u00020\u0002B\r\u0012\u0006\u0010\u0003\u001a\u00020\u0004¢\u0006\u0002\u0010\u0005J\u0010\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\rH\u0016J\u0013\u0010\u000e\u001a\u00020\u000f2\b\u0010\f\u001a\u0004\u0018\u00010\rH\u0096\u0002R\u0010\u0010\u0003\u001a\u00020\u00048\u0006X\u0087\u0004¢\u0006\u0002\n\u0000R\u0014\u0010\u0006\u001a\u00020\u00078VX\u0096\u0004¢\u0006\u0006\u001a\u0004\b\b\u0010\t¨\u0006\u0010"}, d2 = {"Lkotlinx/coroutines/ChildHandleNode;", "Lkotlinx/coroutines/JobCancellingNode;", "Lkotlinx/coroutines/ChildHandle;", "childJob", "Lkotlinx/coroutines/ChildJob;", "(Lkotlinx/coroutines/ChildJob;)V", "parent", "Lkotlinx/coroutines/Job;", "getParent", "()Lkotlinx/coroutines/Job;", "childCancelled", "", "cause", "", "invoke", "", "kotlinx-coroutines-core"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| public final class ChildHandleNode extends JobCancellingNode implements ChildHandle {
 | |
|     public final ChildJob childJob;
 | |
| 
 | |
|     @Override // kotlin.jvm.functions.Function1
 | |
|     public /* bridge */ /* synthetic */ Unit invoke(Throwable th) {
 | |
|         invoke2(th);
 | |
|         return Unit.INSTANCE;
 | |
|     }
 | |
| 
 | |
|     public ChildHandleNode(ChildJob childJob) {
 | |
|         this.childJob = childJob;
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.ChildHandle
 | |
|     public Job getParent() {
 | |
|         return getJob();
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.CompletionHandlerBase
 | |
|     /* renamed from: invoke, reason: avoid collision after fix types in other method */
 | |
|     public void invoke2(Throwable cause) {
 | |
|         this.childJob.parentCancelled(getJob());
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.ChildHandle
 | |
|     public boolean childCancelled(Throwable cause) {
 | |
|         return getJob().childCancelled(cause);
 | |
|     }
 | |
| }
 |