aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.UI/DataStore/DefaultRemoteDataStoreManager.cs
blob: a9c40c6e3eebf831fd934afd719ac5e538a8b171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.DI;
using Tango.DataStore;
using Tango.DataStore.Remote;
using Tango.FSE.Common.Connection;
using Tango.FSE.Common.DataStore;

namespace Tango.FSE.UI.DataStore
{
    public class DefaultRemoteDataStoreManager : IRemoteDataStoreManager
    {
        [TangoInject]
        internal IMachineProvider MachineProvider { get; set; }

        public IDataStoreCollection GetCollection(string name)
        {
            return new RemoteDataStoreCollection(name, MachineProvider);
        }

        public List<string> GetCollectionNames()
        {
            return MachineProvider.MachineOperator.SendGenericRequest<RemoteDataStoreGetCollectionNamesRequest, RemoteDataStoreGetCollectionNamesResponse>(new RemoteDataStoreGetCollectionNamesRequest()).Result.Names;
        }

        public void Dispose()
        {
            //Do nothing.
        }
    }
}