MCPcopy Create free account
hub / github.com/QNapi/qnapi / run

Method run

gui/src/qcumber/qinterprocesschannel.cpp:165–184  ·  view source on GitHub ↗

! \internal */

Source from the content-addressed store, hash-verified

163 \internal
164*/
165void QInterProcessChannel::run() {
166 /*
167 There we check that the server lives...
168 If connection fails notify it...
169 */
170
171 if (pServer) return;
172
173 // qDebug("timer setup...");
174
175 pServerTimer = new QTimer;
176 pServerTimer->setInterval(100);
177 pServerTimer->setSingleShot(false);
178
179 connect(pServerTimer, SIGNAL(timeout()), this, SLOT(check()));
180
181 pServerTimer->start();
182
183 exec();
184}
185
186/*!
187 \internal

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected