ProcessQueue.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Quadarax.Foundation.Core.Business.Processor.Task;
  7. using Quadarax.Foundation.Core.Logging;
  8. using Quadarax.Foundation.Core.Object;
  9. namespace Quadarax.Foundation.Core.Business.Processor.Queue
  10. {
  11. public class ProcessQueue : DisposableObject
  12. {
  13. public void Start()
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public void Stop()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. public ITaskIdentifier CreateTask()
  22. {
  23. }
  24. public ITaskItem GetTask(ITaskIdentifier id)
  25. {
  26. }
  27. public ITaskItem[] GetTask(ITaskIdentifier[] ids)
  28. {
  29. }
  30. public bool ContainsPendingTasks()
  31. {
  32. }
  33. public bool ContainsProcessingTasks()
  34. {
  35. }
  36. protected override void OnDisposing()
  37. {
  38. throw new NotImplementedException();
  39. }
  40. }
  41. }