Adds skeleton SynchronousIOManager implementation

This commit is contained in:
Cyberboss
2018-07-23 12:15:28 -04:00
parent 04d71065a9
commit fc76fa2830
@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
namespace Tgstation.Server.Host.Core
{
/// <inheritdoc />
sealed class SynchronousIOManager : ISynchronousIOManager
{
/// <inheritdoc />
public IEnumerable<string> GetDirectories(string path, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
/// <inheritdoc />
public IEnumerable<string> GetFiles(string path, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
/// <inheritdoc />
public byte[] ReadFile(string path, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
/// <inheritdoc />
public bool WriteFileChecked(string path, byte[] data, string previousSha1, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}
}