|
PACS System 0.1.0
PACS DICOM system library
|
Result of a prefetch operation. More...
#include <prefetch_types.h>

Public Member Functions | |
| bool | is_success () const noexcept |
| Check if prefetch was successful. | |
Public Attributes | |
| std::string | patient_id |
| Patient ID. | |
| std::string | patient_name |
| Patient name. | |
| size_t | studies_found {0} |
| Studies found on remote. | |
| size_t | studies_prefetched {0} |
| Studies actually prefetched. | |
| size_t | studies_already_local {0} |
| Studies already local. | |
| std::vector< std::string > | job_ids |
| Created job IDs. | |
| std::chrono::milliseconds | elapsed {0} |
| Operation duration. | |
Result of a prefetch operation.
Contains statistics about what was prefetched for a patient.
Definition at line 144 of file prefetch_types.h.
|
inlinenodiscardnoexcept |
Check if prefetch was successful.
Definition at line 156 of file prefetch_types.h.
References studies_already_local, and studies_prefetched.
| std::chrono::milliseconds kcenon::pacs::client::prefetch_result::elapsed {0} |
Operation duration.
Definition at line 151 of file prefetch_types.h.
Referenced by kcenon::pacs::client::prefetch_manager::prefetch_priors().
| std::vector<std::string> kcenon::pacs::client::prefetch_result::job_ids |
Created job IDs.
Definition at line 150 of file prefetch_types.h.
| std::string kcenon::pacs::client::prefetch_result::patient_id |
Patient ID.
Definition at line 145 of file prefetch_types.h.
Referenced by kcenon::pacs::client::prefetch_manager::prefetch_priors().
| std::string kcenon::pacs::client::prefetch_result::patient_name |
Patient name.
Definition at line 146 of file prefetch_types.h.
| size_t kcenon::pacs::client::prefetch_result::studies_already_local {0} |
Studies already local.
Definition at line 149 of file prefetch_types.h.
Referenced by is_success().
| size_t kcenon::pacs::client::prefetch_result::studies_found {0} |
| size_t kcenon::pacs::client::prefetch_result::studies_prefetched {0} |
Studies actually prefetched.
Definition at line 148 of file prefetch_types.h.
Referenced by is_success().