MCPcopy Create free account
hub / github.com/apache/impala / Construct

Method Construct

be/src/kudu/util/object_pool.h:73–77  ·  view source on GitHub ↗

Construct a new object instance from the pool.

Source from the content-addressed store, hash-verified

71
72 // Construct a new object instance from the pool.
73 T *Construct() {
74 base::ManualConstructor<T> *obj = GetObject();
75 obj->Init();
76 return obj->get();
77 }
78
79 template<class Arg1>
80 T *Construct(Arg1 arg1) {

Callers 2

QueueOutboundCallMethod · 0.80
TESTFunction · 0.80

Calls 2

getMethod · 0.65
InitMethod · 0.45

Tested by 1

TESTFunction · 0.64