-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
40a52e1
commit 9307305
Showing
2 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
export enum TimingEnum { | ||
// The time from when the users selects a study until the study metadata | ||
// is loaded (and the display sets are ready) | ||
STUDY_TO_DISPLAY_SETS = 'studyToDisplaySetsLoaded', | ||
|
||
// The time from when the user selects a study until any viewport renders | ||
STUDY_TO_FIRST_IMAGE = 'studyToFirstImage', | ||
|
||
// The time from when display sets are loaded until any viewport renders | ||
// an image. | ||
DISPLAY_SETS_TO_FIRST_IMAGE = 'displaySetsToFirstImage', | ||
|
||
// The time from when display sets are loaded until all viewports have images | ||
DISPLAY_SETS_TO_ALL_IMAGES = 'displaySetsToAllImages', | ||
SCRIPT_TO_VIEW = 'scriptToView', | ||
|
||
// The time from when the user hits search until the worklist is displayed | ||
SEARCH_TO_LIST = 'searchToList', | ||
|
||
// The time from when the html script first starts being evaluated (before | ||
// any other scripts or CSS is loaded), until the time that the first image | ||
// is viewed for viewer endpoints, or the time that the first search for studies | ||
// completes. | ||
SCRIPT_TO_VIEW = 'scriptToView', | ||
} |