public class DefaultHeartbeatManager extends Object implements HeartbeatManager
Modifier and Type | Field and Description |
---|---|
static long |
TIMEOUT_MS |
Constructor and Description |
---|
DefaultHeartbeatManager(com.atlassian.beehive.ClusterLockService clusterLockService,
com.atlassian.vcache.VCacheFactory cacheFactory) |
Modifier and Type | Method and Description |
---|---|
long |
getHeartbeatInterval()
Fetches the time at which activities will expire
|
List<com.atlassian.user.User> |
getUsersForActivity(Object activityKey)
Deprecated.
since 5.10. This method is not cluster-safe and should no longer be used. Use
getUsersForActivity(String) instead. |
List<com.atlassian.user.User> |
getUsersForActivity(String activityKey)
Fetches a list of users who are participating in a specified activity
|
void |
startActivity(Object activityKey,
com.atlassian.user.User user)
Deprecated.
since 5.10. This method is not cluster-safe and should no longer be used. Use
startActivity(String, User) instead |
void |
startActivity(String activityKey,
com.atlassian.user.User user)
Adds a user as an active participant to the specified activity
|
void |
stopActivity(Object activityKey,
com.atlassian.user.User user)
Deprecated.
since 5.10. This method is not cluster-safe and should no longer be used. Use
stopActivity(String, User) instead |
void |
stopActivity(String activityKey,
com.atlassian.user.User user)
Remove a user from the active participants from the specified activity
|
public static final long TIMEOUT_MS
public DefaultHeartbeatManager(com.atlassian.beehive.ClusterLockService clusterLockService, com.atlassian.vcache.VCacheFactory cacheFactory)
public long getHeartbeatInterval()
HeartbeatManager
getHeartbeatInterval
in interface HeartbeatManager
@Deprecated public List<com.atlassian.user.User> getUsersForActivity(Object activityKey)
getUsersForActivity(String)
instead.getUsersForActivity
in interface HeartbeatManager
public List<com.atlassian.user.User> getUsersForActivity(String activityKey)
HeartbeatManager
getUsersForActivity
in interface HeartbeatManager
activityKey
- The key used to identify the activity@Deprecated public void startActivity(Object activityKey, com.atlassian.user.User user)
startActivity(String, User)
insteadstartActivity
in interface HeartbeatManager
public void startActivity(String activityKey, com.atlassian.user.User user)
HeartbeatManager
startActivity
in interface HeartbeatManager
activityKey
- The key used to identify the activityuser
- The user who is participating in the activity@Deprecated public void stopActivity(Object activityKey, com.atlassian.user.User user)
stopActivity(String, User)
insteadstopActivity
in interface HeartbeatManager
public void stopActivity(String activityKey, com.atlassian.user.User user)
HeartbeatManager
stopActivity
in interface HeartbeatManager
activityKey
- The key used to identify the activityuser
- The user who is participating in the activityCopyright © 2003–2016 Atlassian. All rights reserved.