//=========================================
    // ClusterSnapshotControl
    //=========================================

    public void ShutDown()
    {
        if (IsStopped)
        {
            return;
        }

        _localLiveNode.Stop();
        _clusterApplication.Stop();
        _attributesAgent.Stop();
        Pause();
        _communicationsHub.Close();
        Stop();
        Stage.World.Terminate();
    }