Go to the source code of this file.
◆ dataLoad() [1/2]
| void dataLoad |
( |
std::istream & |
stream, |
|
|
Backup & |
backup, |
|
|
void * |
context |
|
) |
| |
Definition at line 26 of file Backup.C.
Referenced by dataLoad().
28 mooseAssert(backup.
header,
"Not set");
29 mooseAssert(backup.
data,
"Not set");
std::unique_ptr< std::stringstream > data
Restartable data payload stream.
void dataLoad(std::istream &stream, Backup &backup, void *context)
std::vector< std::pair< std::string, std::string > > mesh_files
Pairs of checkpoint-relative entry names and binary payloads.
std::unique_ptr< std::stringstream > header
Restartable data header stream.
◆ dataLoad() [2/2]
| void dataLoad |
( |
std::istream & |
stream, |
|
|
std::unique_ptr< Backup > & |
backup, |
|
|
void * |
context |
|
) |
| |
Definition at line 46 of file Backup.C.
49 dataLoad(stream, has_value,
nullptr);
52 backup = std::make_unique<Backup>();
void dataLoad(std::istream &stream, Backup &backup, void *context)
◆ dataStore() [1/2]
| void dataStore |
( |
std::ostream & |
stream, |
|
|
Backup & |
backup, |
|
|
void * |
context |
|
) |
| |
Definition at line 15 of file Backup.C.
Referenced by dataStore().
17 mooseAssert(backup.
header,
"Not set");
18 mooseAssert(backup.
data,
"Not set");
void dataStore(std::ostream &stream, Backup &backup, void *context)
std::unique_ptr< std::stringstream > data
Restartable data payload stream.
std::vector< std::pair< std::string, std::string > > mesh_files
Pairs of checkpoint-relative entry names and binary payloads.
std::unique_ptr< std::stringstream > header
Restartable data header stream.
◆ dataStore() [2/2]
| void dataStore |
( |
std::ostream & |
stream, |
|
|
std::unique_ptr< Backup > & |
backup, |
|
|
void * |
context |
|
) |
| |
Definition at line 37 of file Backup.C.
39 bool has_value = backup !=
nullptr;
void dataStore(std::ostream &stream, Backup &backup, void *context)