namespace Torch.API.Managers { /// /// Base interface for Torch managers. /// public interface IManager { /// /// Attaches the manager to the session. Called once this manager's dependencies have been attached. /// void Attach(); /// /// Detaches the manager from the session. Called before this manager's dependencies are detached. /// void Detach(); } }