Skip to content

Commit dcffd98

Browse files
committed
Rename Queue namespace to Queuing
1 parent 638bd36 commit dcffd98

File tree

14 files changed

+16
-16
lines changed

14 files changed

+16
-16
lines changed

src/InEngine.Core.Test/Queue/Commands/ConsumeTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using BeekmanLabs.UnitTesting;
22
using InEngine.Commands;
3-
using InEngine.Core.Queue.Commands;
3+
using InEngine.Core.Queuing.Commands;
44
using Moq;
55
using NUnit.Framework;
66
using Quartz;

src/InEngine.Core.Test/Queue/Commands/PublishTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using InEngine.Commands;
55
using InEngine.Core.Commands;
66
using InEngine.Core.Exceptions;
7-
using InEngine.Core.Queue.Commands;
7+
using InEngine.Core.Queuing.Commands;
88
using NUnit.Framework;
99

1010
namespace InEngine.Core.Test.Queue.Commands

src/InEngine.Core/InEngineSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22
using System.IO;
3-
using InEngine.Core.Queue;
3+
using InEngine.Core.Queuing;
44
using Microsoft.Extensions.Configuration;
55

66
namespace InEngine.Core
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Newtonsoft.Json;
88
using StackExchange.Redis;
99

10-
namespace InEngine.Core.Queue
10+
namespace InEngine.Core.Queuing
1111
{
1212
public class Broker
1313
{

src/InEngine.Core/Queue/Commands/Consume.cs renamed to src/InEngine.Core/Queuing/Commands/Consume.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using CommandLine;
33

4-
namespace InEngine.Core.Queue.Commands
4+
namespace InEngine.Core.Queuing.Commands
55
{
66
public class Consume : AbstractCommand
77
{

src/InEngine.Core/Queue/Commands/Flush.cs renamed to src/InEngine.Core/Queuing/Commands/Flush.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using CommandLine;
22
using InEngine.Core.Exceptions;
33

4-
namespace InEngine.Core.Queue.Commands
4+
namespace InEngine.Core.Queuing.Commands
55
{
66
public class Flush : AbstractCommand
77
{

src/InEngine.Core/Queue/Commands/Length.cs renamed to src/InEngine.Core/Queuing/Commands/Length.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using CommandLine;
33

4-
namespace InEngine.Core.Queue.Commands
4+
namespace InEngine.Core.Queuing.Commands
55
{
66
public class Length : AbstractCommand
77
{

src/InEngine.Core/Queue/Commands/Peek.cs renamed to src/InEngine.Core/Queuing/Commands/Peek.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Konsole.Forms;
88
using Newtonsoft.Json;
99

10-
namespace InEngine.Core.Queue.Commands
10+
namespace InEngine.Core.Queuing.Commands
1111
{
1212
public class Peek : AbstractCommand
1313
{

src/InEngine.Core/Queue/Commands/Publish.cs renamed to src/InEngine.Core/Queuing/Commands/Publish.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using CommandLine;
44
using InEngine.Core.Exceptions;
55

6-
namespace InEngine.Core.Queue.Commands
6+
namespace InEngine.Core.Queuing.Commands
77
{
88
public class Publish : AbstractCommand
99
{

src/InEngine.Core/Queue/Commands/RepublishFailed.cs renamed to src/InEngine.Core/Queuing/Commands/RepublishFailed.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Linq;
33
using CommandLine;
44

5-
namespace InEngine.Core.Queue.Commands
5+
namespace InEngine.Core.Queuing.Commands
66
{
77
public class RepublishFailed : AbstractCommand
88
{

0 commit comments

Comments
 (0)