PNCounter

class PNCounter(service_name, name, context)[source]

Bases: Proxy[BlockingPNCounter]

PN (Positive-Negative) CRDT counter.

The counter supports adding and subtracting values as well as retrieving the current counter value. Each replica of this counter can perform operations locally without coordination with the other replicas, thus increasing availability. The counter guarantees that whenever two nodes have received the same set of updates, possibly in a different order, their state is identical, and any conflicting updates are merged automatically. If no new updates are made to the shared state, all nodes that can communicate will eventually have the same data.

When invoking updates from the client, the invocation is remote. This may lead to indeterminate state - the update may be applied but the response has not been received. In this case, the caller will be notified with a TargetDisconnectedError.

The read and write methods provide monotonic read and RYW (read-your-write) guarantees. These guarantees are session guarantees which means that if no replica with the previously observed state is reachable, the session guarantees are lost and the method invocation will throw a ConsistencyLostError. This does not mean that an update is lost. All of the updates are part of some replica and will be eventually reflected in the state of all other replicas. This exception just means that you cannot observe your own writes because all replicas that contain your updates are currently unreachable. After you have received a ConsistencyLostError, you can either wait for a sufficiently up-to-date replica to become reachable in which case the session can be continued or you can reset the session by calling the reset() method. If you have called the reset() method, a new session is started with the next invocation to a CRDT replica.

Notes

The CRDT state is kept entirely on non-lite (data) members. If there aren’t any and the methods here are invoked on a lite member, they will fail with an NoDataMemberInClusterError.

get() Future[int][source]

Returns the current value of the counter.

Returns:

The current value of the counter.

Raises:
get_and_add(delta: int) Future[int][source]

Adds the given value to the current value and returns the previous value.

Parameters:

delta – The value to add.

Returns:

The previous value.

Raises:
add_and_get(delta: int) Future[int][source]

Adds the given value to the current value and returns the updated value.

Parameters:

delta – The value to add.

Returns:

The updated value.

Raises:
get_and_subtract(delta: int) Future[int][source]

Subtracts the given value from the current value and returns the previous value.

Parameters:

delta – The value to subtract.

Returns:

The previous value.

Raises:
subtract_and_get(delta: int) Future[int][source]

Subtracts the given value from the current value and returns the updated value.

Parameters:

delta – The value to subtract.

Returns:

The updated value.

Raises:
get_and_decrement() Future[int][source]

Decrements the counter value by one and returns the previous value.

Returns:

The previous value.

Raises:
decrement_and_get() Future[int][source]

Decrements the counter value by one and returns the updated value.

Returns:

The updated value.

Raises:
get_and_increment() Future[int][source]

Increments the counter value by one and returns the previous value.

Returns:

The previous value.

Raises:
increment_and_get() Future[int][source]

Increments the counter value by one and returns the updated value.

Returns:

The updated value.

Raises:
reset() None[source]

Resets the observed state by this PN counter.

This method may be used after a method invocation has thrown a ConsistencyLostError to reset the proxy and to be able to start a new session.

blocking() BlockingPNCounter[source]

Returns a version of this proxy with only blocking method calls.

class BlockingPNCounter(wrapped: PNCounter)[source]

Bases: PNCounter

name
service_name
get() int[source]

Returns the current value of the counter.

Returns:

The current value of the counter.

Raises:
get_and_add(delta: int) int[source]

Adds the given value to the current value and returns the previous value.

Parameters:

delta – The value to add.

Returns:

The previous value.

Raises:
add_and_get(delta: int) int[source]

Adds the given value to the current value and returns the updated value.

Parameters:

delta – The value to add.

Returns:

The updated value.

Raises:
get_and_subtract(delta: int) int[source]

Subtracts the given value from the current value and returns the previous value.

Parameters:

delta – The value to subtract.

Returns:

The previous value.

Raises:
subtract_and_get(delta: int) int[source]

Subtracts the given value from the current value and returns the updated value.

Parameters:

delta – The value to subtract.

Returns:

The updated value.

Raises:
get_and_decrement() int[source]

Decrements the counter value by one and returns the previous value.

Returns:

The previous value.

Raises:
decrement_and_get() int[source]

Decrements the counter value by one and returns the updated value.

Returns:

The updated value.

Raises:
get_and_increment() int[source]

Increments the counter value by one and returns the previous value.

Returns:

The previous value.

Raises:
increment_and_get() int[source]

Increments the counter value by one and returns the updated value.

Returns:

The updated value.

Raises:
reset() None[source]

Resets the observed state by this PN counter.

This method may be used after a method invocation has thrown a ConsistencyLostError to reset the proxy and to be able to start a new session.

destroy() bool[source]

Destroys this proxy.

Returns:

True if this proxy is destroyed successfully, False otherwise.

blocking() BlockingPNCounter[source]

Returns a version of this proxy with only blocking method calls.