@Internal @ParametersAreNonnullByDefault public class NopActivityMonitor extends Object implements ActivityMonitor
ActivityMonitor
that does nothing.
Useful if you are in situations (legacy code) that does not have access to the real service.Modifier and Type | Field and Description |
---|---|
static NopActivityMonitor |
INSTANCE |
Modifier and Type | Method and Description |
---|---|
Activity |
registerStart(String userId,
String type,
String summary)
Starts tracking an activity using the current thread.
|
Collection<ActivitySnapshot> |
snapshotCurrent()
Returns an immutable snapshot of the current activity in the system.
|
public static final NopActivityMonitor INSTANCE
@Nonnull public Activity registerStart(String userId, String type, String summary)
ActivityMonitor
Activity.close()
on the returned Activity
after the activity has completed.
The typical usage is:
final Activity activity = activityMonitor.registerStart(userId, type, summary); try { // code to execute } finally { activity.close(); }
Under Java 7, the following is also possible:
try (Activity activity = activityMonitor.registerStart(userId, type, summary)) { // code to execute }
registerStart
in interface ActivityMonitor
userId
- the identifier of the user associated with the activity.type
- the type of activity being performed. E.g. web-requestsummary
- a textual summary of the activity. E.g. /some/url.action@Nonnull public Collection<ActivitySnapshot> snapshotCurrent()
ActivityMonitor
snapshotCurrent
in interface ActivityMonitor
Copyright © 2003–2016 Atlassian. All rights reserved.