MCPcopy Create free account
hub / github.com/TheAssassin/AppImageLauncher / scheduleForIntegration

Method scheduleForIntegration

src/daemon/worker.cpp:151–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149}
150
151void Worker::scheduleForIntegration(const QString& path) {
152 auto operation = std::make_pair(path, INTEGRATE);
153 if (!d->isDuplicate(operation)) {
154 std::cout << "Scheduling for (re-)integration: " << path.toStdString() << std::endl;
155 d->deferredOperations.push_back(operation);
156 emit startTimer();
157 }
158
159}
160
161void Worker::scheduleForUnintegration(const QString& path) {
162 auto operation = std::make_pair(path, UNINTEGRATE);

Callers 1

Calls 1

isDuplicateMethod · 0.80

Tested by

no test coverage detected