@ -2,6 +2,7 @@
// Created: 2020-01-27
// Copyright(c) 2020 SimonG. All Rights Reserved.
using System.Threading.Tasks;
using GBase.Interfaces;
namespace GBase
@ -18,5 +19,10 @@ namespace GBase
{
}
public async ValueTask DisposeAsync()
@ -2,12 +2,14 @@
// Created: 2020-01-24
using System;
namespace GBase.Interfaces
/// <summary>
/// An entry of a <see cref="IGBaseTable"/>
/// </summary>
public interface IGBaseEntry //TODO: Make entry generic (generic type is type of the value of the entry?)
public interface IGBaseEntry : IAsyncDisposable //TODO: Make entry generic (generic type is type of the value of the entry?)