public void Detach() { beep.Reset(); engine = null; beep.Stop(); beep = null; }
public void Attach(IAsyncEngine aEngine) { engine = aEngine; coreSize = engine.Project.Rules.CoreSize; rows = coreSize / columns; beep = new BeepOut(); beep.Start(); }