Package com.dynatrace.openkit.api
Interface RootAction
-
- All Superinterfaces:
Action,java.lang.AutoCloseable,java.io.Closeable
- All Known Implementing Classes:
NullRootAction,RootActionImpl
public interface RootAction extends Action
This interface provides the same functionality as Action, additionally it allows to create child Actions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActionenterAction(java.lang.String actionName)Enters a (child) Action with a specified name on this Action.-
Methods inherited from interface com.dynatrace.openkit.api.Action
cancelAction, getDurationInMilliseconds, leaveAction, reportError, reportError, reportError, reportEvent, reportValue, reportValue, reportValue, reportValue, traceWebRequest, traceWebRequest
-
-
-
-
Method Detail
-
enterAction
Action enterAction(java.lang.String actionName)
Enters a (child) Action with a specified name on this Action.If the given
actionNameisnullor an empty string, no reporting will happen on thatRootAction.- Parameters:
actionName- name of the Action- Returns:
- Action instance to work with
-
-