Class OverloadedTimedMethodBean
- java.lang.Object
-
- org.eclipse.microprofile.metrics.tck.metrics.OverloadedTimedMethodBean
-
@Dependent public class OverloadedTimedMethodBean extends Object
-
-
Constructor Summary
Constructors Constructor Description OverloadedTimedMethodBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
overloadedTimedMethod()
void
overloadedTimedMethod(Object object)
void
overloadedTimedMethod(String string)
void
overloadedTimedMethod(List<String> strings)
-
-
-
Method Detail
-
overloadedTimedMethod
@Timed(name="overloadedTimedMethodWithNoArguments") public void overloadedTimedMethod()
-
overloadedTimedMethod
@Timed(name="overloadedTimedMethodWithStringArgument") public void overloadedTimedMethod(String string)
-
overloadedTimedMethod
@Timed(name="overloadedTimedMethodWithListOfStringArgument") public void overloadedTimedMethod(List<String> strings)
-
-