MCPcopy Create free account
hub / github.com/apache/incubator-pegasus / enqueue_with

Method enqueue_with

src/runtime/task/task.h:394–399  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

392 virtual void exec() override { absl::apply(_cb, std::move(_values)); }
393
394 void enqueue_with(const First &t, const Remaining &... r, int delay_ms = 0)
395 {
396 _values = std::make_tuple(t, r...);
397 set_delay(delay_ms);
398 enqueue();
399 }
400 void enqueue_with(First &&t, Remaining &&... r, int delay_ms = 0)
401 {
402 _values = std::make_tuple(std::move(t), std::forward<Remaining>(r)...);

Callers 15

list_dirMethod · 0.80
create_fileMethod · 0.80
remove_pathMethod · 0.80
writeMethod · 0.80
uploadMethod · 0.80
readMethod · 0.80
downloadMethod · 0.80
list_dirMethod · 0.80
create_fileMethod · 0.80
remove_pathMethod · 0.80
writeMethod · 0.80
uploadMethod · 0.80

Calls 1

enqueueFunction · 0.85

Tested by

no test coverage detected