-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
get rid of warnings and other code qualitity issues
- Loading branch information
Showing
78 changed files
with
1,014 additions
and
1,084 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/Rebus.Configuration/Rebus.Configuration.SqlServerSelectors/SqlServerDataBusSelector.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/Rebus.Configuration/Rebus.Configuration.SqlServerSelectors/SqlServerSagaStoreSelector.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...us.Configuration/Rebus.Configuration.SqlServerSelectors/SqlServerSubscriptionsSelector.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/Rebus.Configuration/Rebus.Configuration.SqlServerSelectors/SqlServerTimeoutsSelector.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 8 additions & 9 deletions
17
src/Rebus.Operations/Rebus.Operations.Abstractions/IOperationDispatcher.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
#nullable enable | ||
|
||
using JetBrains.Annotations; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Threading.Tasks; | ||
|
||
namespace Dbosoft.Rebus.Operations | ||
namespace Dbosoft.Rebus.Operations; | ||
|
||
[PublicAPI] | ||
public interface IOperationDispatcher | ||
{ | ||
public interface IOperationDispatcher | ||
{ | ||
ValueTask<IOperation?> StartNew<T>(object? additionalData = default, IDictionary<string,string>? additionalHeaders = null) where T : class, new(); | ||
ValueTask<IOperation?> StartNew(Type commandType, object? additionalData = default, IDictionary<string,string>? additionalHeaders = null); | ||
ValueTask<IOperation?> StartNew(object operationCommand, object? additionalData = default, IDictionary<string,string>? additionalHeaders = null); | ||
ValueTask<IOperation?> StartNew<T>(object? additionalData = default, IDictionary<string,string>? additionalHeaders = null) where T : class, new(); | ||
ValueTask<IOperation?> StartNew(Type commandType, object? additionalData = default, IDictionary<string,string>? additionalHeaders = null); | ||
ValueTask<IOperation?> StartNew(object operationCommand, object? additionalData = default, IDictionary<string,string>? additionalHeaders = null); | ||
|
||
} | ||
} |
4 changes: 3 additions & 1 deletion
4
src/Rebus.Operations/Rebus.Operations.Abstractions/IOperationLogEntry.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 10 additions & 14 deletions
24
src/Rebus.Operations/Rebus.Operations.Abstractions/IOperationTaskDispatcher.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
#nullable enable | ||
|
||
using System; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Threading.Tasks; | ||
|
||
namespace Dbosoft.Rebus.Operations | ||
{ | ||
public interface IOperationTaskDispatcher | ||
{ | ||
ValueTask<IOperationTask?> StartNew<T>(Guid operationId, Guid initiatingTaskId, | ||
object? additionalData = default, IDictionary<string,string>? additionalHeaders = null) where T : class, new(); | ||
namespace Dbosoft.Rebus.Operations; | ||
|
||
ValueTask<IOperationTask?> StartNew(Guid operationId, Guid initiatingTaskId, Type operationCommandType, | ||
object? additionalData = default, IDictionary<string,string>? additionalHeaders = null); | ||
public interface IOperationTaskDispatcher | ||
{ | ||
ValueTask<IOperationTask?> StartNew<T>(Guid operationId, Guid initiatingTaskId, | ||
object? additionalData = default, IDictionary<string,string>? additionalHeaders = null) where T : class, new(); | ||
|
||
ValueTask<IOperationTask?> StartNew(Guid operationId, Guid initiatingTaskId, object command | ||
, object? additionalData = default, IDictionary<string,string>? additionalHeaders = null); | ||
ValueTask<IOperationTask?> StartNew(Guid operationId, Guid initiatingTaskId, Type operationCommandType, | ||
object? additionalData = default, IDictionary<string,string>? additionalHeaders = null); | ||
|
||
} | ||
ValueTask<IOperationTask?> StartNew(Guid operationId, Guid initiatingTaskId, object command | ||
, object? additionalData = default, IDictionary<string,string>? additionalHeaders = null); | ||
|
||
} |
2 changes: 2 additions & 0 deletions
2
src/Rebus.Operations/Rebus.Operations.Abstractions/ITaskMessaging.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
src/Rebus.Operations/Rebus.Operations.Abstractions/Workflow/IWorkflow.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
src/Rebus.Operations/Rebus.Operations.Core/BusOperationTaskExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.