getColdStartActiveUsers<T extends DatumEntityInterface> method

Set<String> getColdStartActiveUsers<T extends DatumEntityInterface>()

Gets all active users that have cold start state for the specified entity type.

Returns a set of user IDs that have been tracked by the cold start manager.

Implementation

Set<String> getColdStartActiveUsers<T extends DatumEntityInterface>() {
  return Datum.manager<T>().coldStartManager.getActiveUsers();
}