16 lines
663 B
C#
16 lines
663 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BlubbFish.Utils.IoT.Connector.Storage {
|
|
public class Influx : AStorageBackend, IDisposable {
|
|
public Influx(Dictionary<String, String> settings) : base(settings) {
|
|
}
|
|
|
|
public override Boolean IsConnected => throw new NotImplementedException();
|
|
|
|
public override void Dispose() => throw new NotImplementedException();
|
|
public override Int32 Insert(String query, Dictionary<String, Object> param) => throw new NotImplementedException();
|
|
public override T LoadSingleRow<T>(String query, Dictionary<String, Object> param) => throw new NotImplementedException();
|
|
}
|
|
}
|