final class reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber<T> implements reactor.core.publisher.InnerOperator<T, T>
minor version: 0
major version: 59
flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
this_class: reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber
super_class: java.lang.Object
{
final reactor.core.CoreSubscriber<? super T> actual;
descriptor: Lreactor/core/CoreSubscriber;
flags: (0x0010) ACC_FINAL
Signature: Lreactor/core/CoreSubscriber<-TT;>;
final java.util.function.Predicate<? super T> predicate;
descriptor: Ljava/util/function/Predicate;
flags: (0x0010) ACC_FINAL
Signature: Ljava/util/function/Predicate<-TT;>;
org.reactivestreams.Subscription s;
descriptor: Lorg/reactivestreams/Subscription;
flags: (0x0000)
boolean done;
descriptor: Z
flags: (0x0000)
void <init>(reactor.core.CoreSubscriber<? super T>, java.util.function.Predicate<? super T>);
descriptor: (Lreactor/core/CoreSubscriber;Ljava/util/function/Predicate;)V
flags: (0x0000)
Code:
stack=2, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
aload 1
putfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
2: aload 0
aload 2
putfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.predicate:Ljava/util/function/Predicate;
3: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
0 4 1 actual Lreactor/core/CoreSubscriber<-TT;>;
0 4 2 predicate Ljava/util/function/Predicate<-TT;>;
Signature: (Lreactor/core/CoreSubscriber<-TT;>;Ljava/util/function/Predicate<-TT;>;)V
MethodParameters:
Name Flags
actual
predicate
public void onSubscribe(org.reactivestreams.Subscription);
descriptor: (Lorg/reactivestreams/Subscription;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.s:Lorg/reactivestreams/Subscription;
aload 1
invokestatic reactor.core.publisher.Operators.validate:(Lorg/reactivestreams/Subscription;Lorg/reactivestreams/Subscription;)Z
ifeq 3
1: aload 0
aload 1
putfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.s:Lorg/reactivestreams/Subscription;
2: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
aload 0
invokeinterface reactor.core.CoreSubscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
3: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
0 4 1 s Lorg/reactivestreams/Subscription;
MethodParameters:
Name Flags
s
public void onNext();
descriptor: (Ljava/lang/Object;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=2
start local 0 start local 1 0: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.done:Z
ifeq 3
1: aload 1
aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
invokeinterface reactor.core.CoreSubscriber.currentContext:()Lreactor/util/context/Context;
invokestatic reactor.core.publisher.Operators.onNextDropped:(Ljava/lang/Object;Lreactor/util/context/Context;)V
2: return
3: StackMap locals:
StackMap stack:
aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.predicate:Ljava/util/function/Predicate;
aload 1
invokeinterface java.util.function.Predicate.test:(Ljava/lang/Object;)Z
istore 2
start local 2 4: goto 8
end local 2 StackMap locals:
StackMap stack: java.lang.Throwable
5: astore 3
start local 3 6: aload 0
aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.s:Lorg/reactivestreams/Subscription;
aload 3
aload 1
aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
invokeinterface reactor.core.CoreSubscriber.currentContext:()Lreactor/util/context/Context;
invokestatic reactor.core.publisher.Operators.onOperatorError:(Lorg/reactivestreams/Subscription;Ljava/lang/Throwable;Ljava/lang/Object;Lreactor/util/context/Context;)Ljava/lang/Throwable;
invokevirtual reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.onError:(Ljava/lang/Throwable;)V
7: return
end local 3 start local 2 8: StackMap locals: int
StackMap stack:
iload 2
ifne 12
9: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.s:Lorg/reactivestreams/Subscription;
invokeinterface org.reactivestreams.Subscription.cancel:()V
10: aload 0
invokevirtual reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.onComplete:()V
11: return
12: StackMap locals:
StackMap stack:
aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
aload 1
invokeinterface reactor.core.CoreSubscriber.onNext:(Ljava/lang/Object;)V
13: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 14 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
0 14 1 t TT;
4 5 2 b Z
8 14 2 b Z
6 8 3 e Ljava/lang/Throwable;
Exception table:
from to target type
3 4 5 Class java.lang.Throwable
Signature: (TT;)V
MethodParameters:
Name Flags
t
public void onError(java.lang.Throwable);
descriptor: (Ljava/lang/Throwable;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.done:Z
ifeq 3
1: aload 1
aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
invokeinterface reactor.core.CoreSubscriber.currentContext:()Lreactor/util/context/Context;
invokestatic reactor.core.publisher.Operators.onErrorDropped:(Ljava/lang/Throwable;Lreactor/util/context/Context;)V
2: return
3: StackMap locals:
StackMap stack:
aload 0
iconst_1
putfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.done:Z
4: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
aload 1
invokeinterface reactor.core.CoreSubscriber.onError:(Ljava/lang/Throwable;)V
5: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
0 6 1 t Ljava/lang/Throwable;
MethodParameters:
Name Flags
t
public void onComplete();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.done:Z
ifeq 2
1: return
2: StackMap locals:
StackMap stack:
aload 0
iconst_1
putfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.done:Z
3: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
invokeinterface reactor.core.CoreSubscriber.onComplete:()V
4: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
public java.lang.Object scanUnsafe(reactor.core.Scannable$Attr);
descriptor: (Lreactor/core/Scannable$Attr;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
getstatic reactor.core.Scannable$Attr.TERMINATED:Lreactor/core/Scannable$Attr;
if_acmpne 1
aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.done:Z
invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
areturn
1: StackMap locals:
StackMap stack:
aload 1
getstatic reactor.core.Scannable$Attr.PARENT:Lreactor/core/Scannable$Attr;
if_acmpne 2
aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.s:Lorg/reactivestreams/Subscription;
areturn
2: StackMap locals:
StackMap stack:
aload 1
getstatic reactor.core.Scannable$Attr.RUN_STYLE:Lreactor/core/Scannable$Attr;
if_acmpne 3
getstatic reactor.core.Scannable$Attr$RunStyle.SYNC:Lreactor/core/Scannable$Attr$RunStyle;
areturn
3: StackMap locals:
StackMap stack:
aload 0
aload 1
invokespecial reactor.core.publisher.InnerOperator.scanUnsafe:(Lreactor/core/Scannable$Attr;)Ljava/lang/Object;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
0 4 1 key Lreactor/core/Scannable$Attr;
RuntimeVisibleAnnotations:
reactor.util.annotation.Nullable()
MethodParameters:
Name Flags
key
public reactor.core.CoreSubscriber<? super T> actual();
descriptor: ()Lreactor/core/CoreSubscriber;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.actual:Lreactor/core/CoreSubscriber;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
Signature: ()Lreactor/core/CoreSubscriber<-TT;>;
public void request(long);
descriptor: (J)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.s:Lorg/reactivestreams/Subscription;
lload 1
invokeinterface org.reactivestreams.Subscription.request:(J)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
0 2 1 n J
MethodParameters:
Name Flags
n
public void cancel();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber.s:Lorg/reactivestreams/Subscription;
invokeinterface org.reactivestreams.Subscription.cancel:()V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lreactor/core/publisher/FluxTakeWhile$TakeWhileSubscriber<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lreactor/core/publisher/InnerOperator<TT;TT;>;
SourceFile: "FluxTakeWhile.java"
NestHost: reactor.core.publisher.FluxTakeWhile
InnerClasses:
public Attr = reactor.core.Scannable$Attr of reactor.core.Scannable
public final RunStyle = reactor.core.Scannable$Attr$RunStyle of reactor.core.Scannable$Attr
final TakeWhileSubscriber = reactor.core.publisher.FluxTakeWhile$TakeWhileSubscriber of reactor.core.publisher.FluxTakeWhile