public class io.vertx.core.eventbus.impl.MessageConsumerImpl extends io.vertx.core.eventbus.impl.HandlerRegistration implements io.vertx.core.eventbus.MessageConsumer
{
private static final io.vertx.core.impl.logging.Logger log;
private static final int DEFAULT_MAX_BUFFERED_MESSAGES;
private final io.vertx.core.Vertx vertx;
private final io.vertx.core.impl.ContextInternal context;
private final io.vertx.core.eventbus.impl.EventBusImpl eventBus;
private final java.lang.String address;
private final boolean localOnly;
private io.vertx.core.Handler handler;
private io.vertx.core.Handler completionHandler;
private io.vertx.core.Handler endHandler;
private io.vertx.core.Handler discardHandler;
private int maxBufferedMessages;
private java.util.Queue pending;
private long demand;
private io.vertx.core.Promise result;
void <init>(io.vertx.core.Vertx, io.vertx.core.impl.ContextInternal, io.vertx.core.eventbus.impl.EventBusImpl, java.lang.String, boolean)
{
io.vertx.core.eventbus.impl.EventBusImpl v;
io.vertx.core.Vertx v;
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.impl.ContextInternal v;
java.lang.String v;
java.util.ArrayDeque v;
boolean v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.Vertx;
v := @parameter: io.vertx.core.impl.ContextInternal;
v := @parameter: io.vertx.core.eventbus.impl.EventBusImpl;
v := @parameter: java.lang.String;
v := @parameter: boolean;
specialinvoke v.<io.vertx.core.eventbus.impl.HandlerRegistration: void <init>(io.vertx.core.impl.ContextInternal,io.vertx.core.eventbus.impl.EventBusImpl,java.lang.String,boolean)>(v, v, v, 0);
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: int maxBufferedMessages> = 1000;
v = new java.util.ArrayDeque;
specialinvoke v.<java.util.ArrayDeque: void <init>(int)>(8);
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending> = v;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand> = 9223372036854775807L;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Vertx vertx> = v;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.impl.ContextInternal context> = v;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.eventbus.impl.EventBusImpl eventBus> = v;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.lang.String address> = v;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: boolean localOnly> = v;
return;
}
public io.vertx.core.eventbus.MessageConsumer setMaxBufferedMessages(int)
{
java.lang.Throwable v;
java.util.ArrayList v;
int v, v, v, v;
boolean v, v, v;
java.util.Iterator v;
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
java.lang.Object v, v;
java.util.Queue v, v, v, v;
io.vertx.core.Handler v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: int;
if v < 0 goto label;
v = 1;
goto label;
label:
v = 0;
label:
staticinvoke <io.vertx.core.impl.Arguments: void require(boolean,java.lang.String)>(v, "Max buffered messages cannot be negative");
entermonitor v;
label:
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: int maxBufferedMessages> = v;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: int size()>();
v = v - v;
if v > 0 goto label;
exitmonitor v;
label:
return v;
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: boolean isEmpty()>();
if v == 0 goto label;
exitmonitor v;
label:
return v;
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler discardHandler>;
v = new java.util.ArrayList;
specialinvoke v.<java.util.ArrayList: void <init>(int)>(v);
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: int size()>();
if v <= v goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: java.lang.Object poll()>();
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
goto label;
label:
exitmonitor v;
label:
goto label;
label:
v := @caughtexception;
exitmonitor v;
throw v;
label:
v = interfaceinvoke v.<java.util.List: java.util.Iterator iterator()>();
label:
v = interfaceinvoke v.<java.util.Iterator: boolean hasNext()>();
if v == 0 goto label;
v = interfaceinvoke v.<java.util.Iterator: java.lang.Object next()>();
if v == null goto label;
interfaceinvoke v.<io.vertx.core.Handler: void handle(java.lang.Object)>(v);
label:
virtualinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: void discard(io.vertx.core.eventbus.Message)>(v);
goto label;
label:
return v;
catch java.lang.Throwable from label to label with label;
catch java.lang.Throwable from label to label with label;
catch java.lang.Throwable from label to label with label;
}
public synchronized int getMaxBufferedMessages()
{
int v;
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: int maxBufferedMessages>;
return v;
}
public java.lang.String address()
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
java.lang.String v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.lang.String address>;
return v;
}
public synchronized void completionHandler(io.vertx.core.Handler)
{
io.vertx.core.Promise v, v;
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.Handler v;
io.vertx.core.Future v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.Handler;
virtualinvoke v.<java.lang.Object: java.lang.Class getClass()>();
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Promise result>;
if v == null goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Promise result>;
v = interfaceinvoke v.<io.vertx.core.Promise: io.vertx.core.Future future()>();
interfaceinvoke v.<io.vertx.core.Future: io.vertx.core.Future onComplete(io.vertx.core.Handler)>(v);
goto label;
label:
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler completionHandler> = v;
label:
return;
}
public synchronized io.vertx.core.Future unregister()
{
java.util.Iterator v;
io.vertx.core.Promise v;
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.impl.ContextInternal v;
io.vertx.core.Future v;
int v;
java.lang.Object v;
java.util.Queue v, v;
io.vertx.core.Handler v, v, v, v;
java.util.ArrayDeque v;
boolean v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler handler> = null;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler endHandler>;
if v == null goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler endHandler>;
interfaceinvoke v.<io.vertx.core.Handler: void handle(java.lang.Object)>(null);
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: int size()>();
if v <= 0 goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler discardHandler>;
v = new java.util.ArrayDeque;
specialinvoke v.<java.util.ArrayDeque: void <init>()>();
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending> = v;
v = interfaceinvoke v.<java.util.Queue: java.util.Iterator iterator()>();
label:
v = interfaceinvoke v.<java.util.Iterator: boolean hasNext()>();
if v == 0 goto label;
v = interfaceinvoke v.<java.util.Iterator: java.lang.Object next()>();
virtualinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: void discard(io.vertx.core.eventbus.Message)>(v);
if v == null goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.impl.ContextInternal context>;
interfaceinvoke v.<io.vertx.core.impl.ContextInternal: void emit(java.lang.Object,io.vertx.core.Handler)>(v, v);
goto label;
label:
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler discardHandler> = null;
v = specialinvoke v.<io.vertx.core.eventbus.impl.HandlerRegistration: io.vertx.core.Future unregister()>();
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Promise result>;
if v == null goto label;
v = staticinvoke <io.vertx.core.eventbus.impl.MessageConsumerImpl$lambda_unregister_0__1844: io.vertx.core.Handler bootstrap$(io.vertx.core.Promise)>(v);
interfaceinvoke v.<io.vertx.core.Future: io.vertx.core.Future onComplete(io.vertx.core.Handler)>(v);
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Promise result> = null;
label:
return v;
}
protected boolean doReceive(io.vertx.core.eventbus.Message)
{
java.lang.Throwable v;
long v, v, v, v;
byte v, v;
int v, v, v, v;
java.lang.String v, v;
io.vertx.core.impl.logging.Logger v;
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.eventbus.Message v;
java.lang.Object v;
java.util.Queue v, v, v, v, v;
io.vertx.core.Handler v, v, v, v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.eventbus.Message;
entermonitor v;
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler handler>;
if v != null goto label;
exitmonitor v;
label:
return 0;
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand>;
v = v cmp 0L;
if v != 0 goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: int size()>();
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: int maxBufferedMessages>;
if v >= v goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
interfaceinvoke v.<java.util.Queue: boolean add(java.lang.Object)>(v);
exitmonitor v;
label:
return 1;
label:
virtualinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: void discard(io.vertx.core.eventbus.Message)>(v);
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler discardHandler>;
if v == null goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler discardHandler>;
interfaceinvoke v.<io.vertx.core.Handler: void handle(java.lang.Object)>(v);
goto label;
label:
v = <io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.impl.logging.Logger log>;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: int maxBufferedMessages>;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.lang.String address>;
v = dynamicinvoke "makeConcatWithConstants" <java.lang.String (int,java.lang.String)>(v, v) <java.lang.invoke.StringConcatFactory: java.lang.invoke.CallSite makeConcatWithConstants(java.lang.invoke.MethodHandles$Lookup,java.lang.String,java.lang.invoke.MethodType,java.lang.String,java.lang.Object[])>("Discarding message as more than \u buffered in paused consumer. address: \u0001");
interfaceinvoke v.<io.vertx.core.impl.logging.Logger: void warn(java.lang.Object)>(v);
label:
exitmonitor v;
label:
return 1;
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: int size()>();
if v <= 0 goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
interfaceinvoke v.<java.util.Queue: boolean add(java.lang.Object)>(v);
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: java.lang.Object poll()>();
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand>;
v = v cmp 9223372036854775807L;
if v == 0 goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand>;
v = v - 1L;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand> = v;
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler handler>;
exitmonitor v;
label:
goto label;
label:
v := @caughtexception;
exitmonitor v;
throw v;
label:
specialinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: void deliver(io.vertx.core.Handler,io.vertx.core.eventbus.Message)>(v, v);
return 1;
catch java.lang.Throwable from label to label with label;
catch java.lang.Throwable from label to label with label;
catch java.lang.Throwable from label to label with label;
catch java.lang.Throwable from label to label with label;
}
protected void dispatch(io.vertx.core.eventbus.Message, io.vertx.core.impl.ContextInternal, io.vertx.core.Handler)
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.eventbus.Message v;
io.vertx.core.impl.ContextInternal v;
io.vertx.core.Handler v;
java.lang.NullPointerException v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.eventbus.Message;
v := @parameter: io.vertx.core.impl.ContextInternal;
v := @parameter: io.vertx.core.Handler;
if v != null goto label;
v = new java.lang.NullPointerException;
specialinvoke v.<java.lang.NullPointerException: void <init>()>();
throw v;
label:
interfaceinvoke v.<io.vertx.core.impl.ContextInternal: void dispatch(java.lang.Object,io.vertx.core.Handler)>(v, v);
return;
}
private void deliver(io.vertx.core.Handler, io.vertx.core.eventbus.Message)
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.eventbus.Message v;
io.vertx.core.impl.ContextInternal v, v;
io.vertx.core.Handler v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.Handler;
v := @parameter: io.vertx.core.eventbus.Message;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.impl.ContextInternal context>;
v = interfaceinvoke v.<io.vertx.core.impl.ContextInternal: io.vertx.core.impl.ContextInternal duplicate()>();
virtualinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: void dispatch(io.vertx.core.Handler,io.vertx.core.eventbus.Message,io.vertx.core.impl.ContextInternal)>(v, v, v);
specialinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: void checkNextTick()>();
return;
}
private synchronized void checkNextTick()
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.impl.ContextInternal v;
long v;
io.netty.channel.EventLoop v;
java.lang.Runnable v;
byte v;
java.util.Queue v;
boolean v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: java.util.Queue pending>;
v = interfaceinvoke v.<java.util.Queue: boolean isEmpty()>();
if v != 0 goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand>;
v = v cmp 0L;
if v <= 0 goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.impl.ContextInternal context>;
v = interfaceinvoke v.<io.vertx.core.impl.ContextInternal: io.netty.channel.EventLoop nettyEventLoop()>();
v = staticinvoke <io.vertx.core.eventbus.impl.MessageConsumerImpl$lambda_checkNextTick_1__1845: java.lang.Runnable bootstrap$(io.vertx.core.eventbus.impl.MessageConsumerImpl)>(v);
interfaceinvoke v.<io.netty.channel.EventLoop: void execute(java.lang.Runnable)>(v);
label:
return;
}
public synchronized void discardHandler(io.vertx.core.Handler)
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.Handler v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.Handler;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler discardHandler> = v;
return;
}
public synchronized io.vertx.core.eventbus.MessageConsumer handler(io.vertx.core.Handler)
{
java.lang.Throwable v;
io.vertx.core.impl.future.PromiseInternal v, v;
io.vertx.core.Promise v;
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.impl.ContextInternal v, v;
io.vertx.core.Future v, v;
io.vertx.core.Handler v, v, v, v;
boolean v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.Handler;
if v == null goto label;
entermonitor v;
label:
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler handler> = v;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Promise result>;
if v != null goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.impl.ContextInternal context>;
v = interfaceinvoke v.<io.vertx.core.impl.ContextInternal: io.vertx.core.impl.future.PromiseInternal promise()>();
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler completionHandler>;
if v == null goto label;
v = interfaceinvoke v.<io.vertx.core.Promise: io.vertx.core.Future future()>();
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler completionHandler>;
interfaceinvoke v.<io.vertx.core.Future: io.vertx.core.Future onComplete(io.vertx.core.Handler)>(v);
label:
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Promise result> = v;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.impl.ContextInternal context>;
v = interfaceinvoke v.<io.vertx.core.impl.ContextInternal: io.vertx.core.impl.future.PromiseInternal promise()>();
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: boolean localOnly>;
virtualinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: void register(java.lang.String,boolean,io.vertx.core.Promise)>(null, v, v);
v = interfaceinvoke v.<io.vertx.core.Promise: io.vertx.core.Future future()>();
v = staticinvoke <io.vertx.core.eventbus.impl.MessageConsumerImpl$lambda_handler_2__1846: io.vertx.core.Handler bootstrap$(io.vertx.core.Promise)>(v);
interfaceinvoke v.<io.vertx.core.Future: io.vertx.core.Future onComplete(io.vertx.core.Handler)>(v);
label:
exitmonitor v;
label:
goto label;
label:
v := @caughtexception;
exitmonitor v;
throw v;
label:
virtualinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Future unregister()>();
label:
return v;
catch java.lang.Throwable from label to label with label;
}
public io.vertx.core.streams.ReadStream bodyStream()
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.eventbus.impl.BodyReadStream v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v = new io.vertx.core.eventbus.impl.BodyReadStream;
specialinvoke v.<io.vertx.core.eventbus.impl.BodyReadStream: void <init>(io.vertx.core.streams.ReadStream)>(v);
return v;
}
public synchronized io.vertx.core.eventbus.MessageConsumer pause()
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand> = 0L;
return v;
}
public io.vertx.core.eventbus.MessageConsumer resume()
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.eventbus.MessageConsumer v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v = virtualinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.eventbus.MessageConsumer fetch(long)>(9223372036854775807L);
return v;
}
public synchronized io.vertx.core.eventbus.MessageConsumer fetch(long)
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
long v, v, v, v, v;
java.lang.IllegalArgumentException v;
byte v, v, v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: long;
v = v cmp 0L;
if v >= 0 goto label;
v = new java.lang.IllegalArgumentException;
specialinvoke v.<java.lang.IllegalArgumentException: void <init>()>();
throw v;
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand>;
v = v + v;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand> = v;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand>;
v = v cmp 0L;
if v >= 0 goto label;
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand> = 9223372036854775807L;
label:
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: long demand>;
v = v cmp 0L;
if v <= 0 goto label;
specialinvoke v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: void checkNextTick()>();
label:
return v;
}
public synchronized io.vertx.core.eventbus.MessageConsumer endHandler(io.vertx.core.Handler)
{
io.vertx.core.Vertx v;
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.Handler v, v;
io.vertx.core.Context v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.Handler;
if v == null goto label;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Vertx vertx>;
v = interfaceinvoke v.<io.vertx.core.Vertx: io.vertx.core.Context getOrCreateContext()>();
v = staticinvoke <io.vertx.core.eventbus.impl.MessageConsumerImpl$lambda_endHandler_4__1847: io.vertx.core.Handler bootstrap$(io.vertx.core.Context,io.vertx.core.Handler)>(v, v);
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler endHandler> = v;
goto label;
label:
v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler endHandler> = null;
label:
return v;
}
public synchronized io.vertx.core.eventbus.MessageConsumer exceptionHandler(io.vertx.core.Handler)
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.Handler v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v := @parameter: io.vertx.core.Handler;
return v;
}
public synchronized io.vertx.core.Handler getHandler()
{
io.vertx.core.eventbus.impl.MessageConsumerImpl v;
io.vertx.core.Handler v;
v := @this: io.vertx.core.eventbus.impl.MessageConsumerImpl;
v = v.<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.Handler handler>;
return v;
}
static void <clinit>()
{
io.vertx.core.impl.logging.Logger v;
v = staticinvoke <io.vertx.core.impl.logging.LoggerFactory: io.vertx.core.impl.logging.Logger getLogger(java.lang.Class)>(class "Lio/vertx/core/eventbus/impl/MessageConsumerImpl;");
<io.vertx.core.eventbus.impl.MessageConsumerImpl: io.vertx.core.impl.logging.Logger log> = v;
return;
}
}