MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / ContinueWith

Method ContinueWith

Source/Engine/Threading/Task.cpp:87–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85}
86
87Task* Task::ContinueWith(Task* task)
88{
89 ASSERT(task != nullptr && task != this);
90 if (_continueWith)
91 return _continueWith->ContinueWith(task);
92 _continueWith = task;
93 return task;
94}
95
96Task* Task::ContinueWith(const Action& action, Object* target)
97{

Callers 10

UpdateMethod · 0.80
DownloadDataAsyncMethod · 0.80
DownloadDataAsyncMethod · 0.80
CreateStreamingTaskMethod · 0.80
DownloadDataAsyncMethod · 0.80
CaptureMethod · 0.80
CreateStreamingTaskMethod · 0.80
createLoadingTaskMethod · 0.80
CreateStreamingTaskMethod · 0.80
FlushMethod · 0.80

Calls 5

GetBindingsMethod · 0.80
ResizeMethod · 0.45
CountMethod · 0.45
GetMethod · 0.45
IsBindedMethod · 0.45

Tested by

no test coverage detected