Class Invocation
- java.lang.Object
-
- io.quarkus.arc.runtime.devconsole.Invocation
-
public class Invocation extends Object
Business method invocation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classInvocation.Builderstatic classInvocation.Kind
-
Constructor Summary
Constructors Constructor Description Invocation(InjectableBean<?> interceptedBean, long start, long duration, Method method, Invocation.Kind kind, String message, List<Invocation> children)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Invocation>getChildren()StringgetDeclaringClassName()longgetDuration()longgetDurationMillis()InjectableBean<?>getInterceptedBean()Invocation.KindgetKind()StringgetMessage()MethodgetMethod()StringgetPackageName(String name)longgetStart()StringgetStartFormatted()StringtoString()
-
-
-
Constructor Detail
-
Invocation
Invocation(InjectableBean<?> interceptedBean, long start, long duration, Method method, Invocation.Kind kind, String message, List<Invocation> children)
-
-
Method Detail
-
getInterceptedBean
public InjectableBean<?> getInterceptedBean()
-
getStart
public long getStart()
-
getStartFormatted
public String getStartFormatted()
-
getDuration
public long getDuration()
-
getDurationMillis
public long getDurationMillis()
-
getMethod
public Method getMethod()
-
getDeclaringClassName
public String getDeclaringClassName()
-
getChildren
public List<Invocation> getChildren()
-
getKind
public Invocation.Kind getKind()
-
getMessage
public String getMessage()
-
-