Skip to content

Commit bd80523

Browse files
authored
Merge pull request #53 from GenLife/feature/stylecop
2 parents a3a2018 + 7abe2b5 commit bd80523

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+243
-280
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,5 @@ ModelManifest.xml
244244
# FAKE - F# Make
245245
.fake/
246246
*.migration_in_place_backup
247+
.idea/.idea.WorkflowCore/.idea
248+
riderModule.iml

src/WorkflowCore/Exceptions/CorruptPersistenceDataException.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Exceptions
64
{

src/WorkflowCore/Exceptions/WorkflowNotRegisteredException.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Exceptions
64
{

src/WorkflowCore/Interface/IBackgroundTask.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-

2-
namespace WorkflowCore.Interface
1+
namespace WorkflowCore.Interface
32
{
43
public interface IBackgroundTask
54
{

src/WorkflowCore/Interface/IContainerStepBuilder.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Interface
64
{

src/WorkflowCore/Interface/IDistributedLockProvider.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Threading;
1+
using System.Threading;
52
using System.Threading.Tasks;
63

74
namespace WorkflowCore.Interface

src/WorkflowCore/Interface/IParallelStepBuilder.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42
using WorkflowCore.Primitives;
53

64
namespace WorkflowCore.Interface

src/WorkflowCore/Interface/IPersistenceProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Linq;
43
using System.Threading.Tasks;
54
using WorkflowCore.Models;
65

src/WorkflowCore/Interface/IQueueProvider.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
42
using System.Threading;
53
using System.Threading.Tasks;
6-
using WorkflowCore.Models;
74

85
namespace WorkflowCore.Interface
96
{
@@ -31,8 +28,8 @@ public interface IQueueProvider : IDisposable
3128
bool IsDequeueBlocking { get; }
3229

3330
Task Start();
34-
Task Stop();
3531

32+
Task Stop();
3633
}
3734

3835
public enum QueueType { Workflow = 0, Event = 1 }

src/WorkflowCore/Interface/IStepBody.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Threading.Tasks;
1+
using System.Threading.Tasks;
52
using WorkflowCore.Models;
63

74
namespace WorkflowCore.Interface

0 commit comments

Comments
 (0)