MCPcopy Create free account
hub / github.com/acl-dev/acl / create_box

Method create_box

lib_acl_cpp/src/redis/redis_client_pipeline.cpp:558–569  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

556}
557
558box<redis_pipeline_message>* redis_client_pipeline::create_box()
559{
560 switch (box_type_) {
561 case BOX_TYPE_TBOX:
562 return new tbox<redis_pipeline_message>(false);
563 case BOX_TYPE_TBOX_ARRAY:
564 return new tbox_array<redis_pipeline_message>(false);
565 case BOX_TYPE_MBOX:
566 default:
567 return new mbox<redis_pipeline_message>(false, false);
568 }
569}
570
571// Called after the thread started
572// @override from acl::thread

Callers 1

get_pipeline_messageMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected