CONZEPT 16 C++ API
|
Reorganization of a key. More...
#include "C16/Key.hpp"
Reorganization of a key.
Public Types | |
enum | Status { Status::RUNNING = 1, Status::DONE, Status::ABORTED } |
Status of a reorganization of a key. More... | |
enum | Result { Result::OK, Result::ABORTED, Result::SERVER_BUSY, Result::SERVER_DATA_STRUCTURE } |
Result of a reorganization of a key. More... | |
using | Callback = std::function< void(Status status, long long int record_id_processed_last, long int key_entries_processed, long int records_defective, long int key_entry_collisions, bool &abort) > |
Callback of a reorganization of a key. More... | |
using C16::Key::Reorganization::Callback = std::function<void ( Status status, long long int record_id_processed_last, long int key_entries_processed, long int records_defective, long int key_entry_collisions, bool& abort ) > |
Callback of a reorganization of a key.
status | Status of the reorganization |
record_id_processed_last | Id of the record processed last |
key_entries_processed | Count of the processed key entries |
records_defective | Count of the defective records |
abort | Abort the reorganization |
|
strong |
Status of a reorganization of a key.
Enumerator | |
---|---|
RUNNING | Reorganization running. |
DONE | Reorganization done. |
ABORTED | Reorganization aborted. |
|
strong |
Result of a reorganization of a key.
Enumerator | |
---|---|
OK | Reorganization succeeded. |
ABORTED | Reorganization aborted. |
SERVER_BUSY | Server busy. |
SERVER_DATA_STRUCTURE | Server could not load data structure. |