use of com.vodafone360.people.tests.PeopleTestConnectionThread in project 360-Engine-for-Android by 360.
the class EngineTestFramework method setEngine.
public void setEngine(BaseEngine eng) {
Log.d("TAG", "enginetestframework.setEngine");
if (eng == null) {
throw (new RuntimeException("Engine is null"));
}
mEngine = eng;
// start our 'worker' thread
mActive = true;
// start the connection thread
mConnThread = new PeopleTestConnectionThread(this);
mConnThread.startThread();
// start the worker thread
mEngineWorkerThread.start();
QueueManager.getInstance().addQueueListener(mConnThread);
}
Aggregations