Skip to content

Commit

Permalink
Removed legacy distributed lock
Browse files Browse the repository at this point in the history
  • Loading branch information
stidsborg committed Jan 11, 2025
1 parent 9a06451 commit 6186838
Show file tree
Hide file tree
Showing 19 changed files with 12 additions and 724 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
using Cleipnir.ResilientFunctions.Utils;
using Cleipnir.ResilientFunctions.Utils.Arbitrator;
using Cleipnir.ResilientFunctions.Utils.Monitor;
using Cleipnir.ResilientFunctions.Utils.Register;

namespace Cleipnir.ResilientFunctions.CoreRuntime.Invocation;

public record Utilities(IMonitor Monitor, IRegister Register, IArbitrator Arbitrator)
public record Utilities(IRegister Register, IArbitrator Arbitrator)
{
public Utilities(IUnderlyingRegister underlyingRegister)
: this(
new Monitor(underlyingRegister),
new Register(underlyingRegister),
new Arbitrator(underlyingRegister)
) {}
Expand Down
Loading

0 comments on commit 6186838

Please sign in to comment.