protected synchronized void startOne(YPersistenceManager pmgr, YIdentifier id) throws YDataStateException, YSchemaBuildingException, YPersistenceException {
_mi_executing.add(pmgr, id);
_mi_entered.removeOne(pmgr, id);
//todo Creating anotehr YNetRunner thread
YNetRunner netRunner = new YNetRunner(pmgr,
(YNet) _decompositionPrototype,
this,
id,
getData(id));
/*
INSERTED FOR PERSISTANCE
*/
//todo AJH Do we actually need this call here ????
// YPersistance.getInstance().storeData(netRunner);
netRunner.continueIfPossible(pmgr);
netRunner.start(pmgr);
}