This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-sharp-desktop/Aurora/Backend/Executors/ClientExecutor.cs

48 lines
972 B
C#

using System;
using Aurora.Backend.Executors;
namespace Aurora.Backend.Executors
{
public class ClientExecutor : BaseExecutor
{
public ClientExecutor()
{
}
public override void AddToQueue()
{
throw new NotImplementedException();
}
public override void Close()
{
throw new NotImplementedException();
}
public override void GetMembers()
{
throw new NotImplementedException();
}
public override void GetQueue()
{
throw new NotImplementedException();
}
public override void Initialize()
{
throw new NotImplementedException();
}
public override void RemoveFromQueue()
{
throw new NotImplementedException();
}
public override void Run()
{
throw new NotImplementedException();
}
}
}