API.Hubs.BaseHub.GetSnapshot C# (CSharp) Method

GetSnapshot() public method

public GetSnapshot ( string snapshotId ) : Task
snapshotId string
return Task
        public async Task<SnapshotModel> GetSnapshot(string snapshotId)
        {
            var snapshotModel = await _snapshotService.GetSnapshot(snapshotId);
            LogDebug($"Retrived snapshot worth {snapshotModel.StashTabs.Sum(s => s.Value)} chaos in " + _timer.ElapsedMilliseconds + " ms.");
            return snapshotModel;
        }