Skip to content

Commit

Permalink
[BKNDLSS-25594]: Atomic handlers (#503)
Browse files Browse the repository at this point in the history
Co-authored-by: Vladimir Yalovy <[email protected]>
  • Loading branch information
JoeSilentJoe and Vladimir Yalovy authored Jul 14, 2021
1 parent 5e5ca06 commit 6cf71af
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,22 @@ public void afterGetAndDecrement( RunnerContext context, String counterName, Exe

}

public void beforeAddAndGet( RunnerContext context, String counterName, Long value ) throws Exception
public void beforeAddAndGet( RunnerContext context, String counterName, long value ) throws Exception
{

}

public void afterAddAndGet( RunnerContext context, String counterName, Long value, ExecutionResult<Long> result ) throws Exception
public void afterAddAndGet( RunnerContext context, String counterName, long value, ExecutionResult<Long> result ) throws Exception
{

}

public void beforeGetAndAdd( RunnerContext context, String counterName, Long value ) throws Exception
public void beforeGetAndAdd( RunnerContext context, String counterName, long value ) throws Exception
{

}

public void afterGetAndAdd( RunnerContext context, String counterName, Long value,
public void afterGetAndAdd( RunnerContext context, String counterName, long value,
ExecutionResult<Long> result ) throws Exception
{

Expand All @@ -88,12 +88,12 @@ public void afterGet( RunnerContext context, String counterName, ExecutionResult

}

public void beforeCompareAndSet( RunnerContext context, String counterName, Long expected, Long updated ) throws Exception
public void beforeCompareAndSet( RunnerContext context, String counterName, long expected, long updated ) throws Exception
{

}

public void afterCompareAndSet( RunnerContext context, String counterName, Long expected, Long updated, ExecutionResult<Boolean> result ) throws Exception
public void afterCompareAndSet( RunnerContext context, String counterName, long expected, long updated, ExecutionResult<Boolean> result ) throws Exception
{

}
Expand Down

0 comments on commit 6cf71af

Please sign in to comment.