MCPcopy Create free account
hub / github.com/TileDB-Inc/TileDB / Array

Method Array

tiledb/sm/array/array.cc:90–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88/* ********************************* */
89
90Array::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 */

Callers

nothing calls this directly

Calls 3

is_tiledbMethod · 0.80
create_memory_trackerMethod · 0.80
configMethod · 0.45

Tested by

no test coverage detected