48 lines
956 B
C#
48 lines
956 B
C#
using System;
|
|
using Aurora.Executors;
|
|
|
|
namespace Aurora.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();
|
|
}
|
|
}
|
|
} |