mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-14 04:57:23 +00:00
46 lines
1.0 KiB
C#
46 lines
1.0 KiB
C#
namespace AutoClient
|
|
{
|
|
public class Performance
|
|
{
|
|
internal void DownloadFailed(Exception ex)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal void DownloadSuccessful(long? size, TimeSpan time)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal void StorageContractCancelled()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal void StorageContractErrored(string error)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal void StorageContractFinished()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal void StorageContractStarted()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal void UploadFailed(Exception exc)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal void UploadSuccessful(long length, TimeSpan time)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|