| 88 | /* ********************************* */ |
| 89 | |
| 90 | Array::Array( |
| 91 | ContextResources& resources, |
| 92 | const URI& array_uri, |
| 93 | ConsistencyController& cc) |
| 94 | : resources_(resources) |
| 95 | , array_uri_(array_uri) |
| 96 | , array_uri_serialized_(array_uri) |
| 97 | , is_open_(false) |
| 98 | , is_opening_or_closing_(false) |
| 99 | , array_dir_timestamp_start_(0) |
| 100 | , user_set_timestamp_end_(nullopt) |
| 101 | , array_dir_timestamp_end_(UINT64_MAX) |
| 102 | , new_component_timestamp_(nullopt) |
| 103 | , config_(resources_.config()) |
| 104 | , remote_(array_uri.is_tiledb()) |
| 105 | , memory_tracker_(resources_.create_memory_tracker()) |
| 106 | , consistency_controller_(cc) |
| 107 | , consistency_sentry_(nullopt) { |
| 108 | } |
| 109 | |
| 110 | /* ********************************* */ |
| 111 | /* API */ |
nothing calls this directly
no test coverage detected