Options
All
  • Public
  • Public/Protected
  • All
Menu

A distributed, highly available object reference with atomic operations.

IAtomicReference offers linearizability during crash failures and network partitions. It is CP with respect to the CAP principle. If a network partition occurs, it remains available on at most one side of the partition.

The following are some considerations you need to know when you use IAtomicReference:

  • IAtomicReference works based on the byte-content and not on the object-reference. If you use the `compareAndSet()` method, do not change to the original value because its serialized content will then be different.
  • All methods returning an object return a private copy. You can modify the private copy, but the rest of the world is shielded from your changes. If you want these changes to be visible to the rest of the world, you need to write the change back to the `IAtomicReference`; but be careful about introducing a data-race.
  • The 'in-memory format' of an `IAtomicReference` is `binary`. The receiving side does not need to have the class definition available unless it needs to be deserialized on the other side., e.g., because a method like `alter()` is executed. This deserialization is done for every call that needs to have the object instead of the binary content, so be careful with expensive object graphs that need to be deserialized.
  • If you have an object with many fields or an object graph, and you only need to calculate some information or need a subset of fields, you can use the `apply()` method. With the `apply()` method, the whole object does not need to be sent over the line; only the information that is relevant is sent.

IFunction-based methods, like alter() or apply() are not yet supported by Hazelcast Node.js client.

IAtomicReference does not offer exactly-once / effectively-once execution semantics. It goes with at-least-once execution semantics by default and can cause an API call to be committed multiple times in case of CP member failures. It can be tuned to offer at-most-once execution semantics. Please see fail-on-indeterminate-operation-state server-side setting.

Type parameters

  • E

Hierarchy

  • DistributedObject
    • IAtomicReference

Index

Methods

clear

  • clear(): Promise<void>
  • Clears the current stored reference, so it becomes a null.

    Returns Promise<void>

compareAndSet

  • compareAndSet(expect: E, update: E): Promise<boolean>
  • Atomically sets the value to the given updated value only if the current value is equal to the expected value.

    Parameters

    • expect: E

      the expected value

    • update: E

      the new value

    Returns Promise<boolean>

    true if successful, or false if the actual value was not equal to the expected value

contains

  • contains(value: E): Promise<boolean>
  • Checks if the reference contains the value.

    Parameters

    • value: E

      the value to check (is allowed to be null)

    Returns Promise<boolean>

    true if the value is found, false otherwise

destroy

  • destroy(): Promise<void>
  • Destroys this object cluster-wide. Clears all resources taken for this object.

    Returns Promise<void>

get

  • get(): Promise<E>
  • Gets the current value.

    Returns Promise<E>

    the current value

getAndSet

  • getAndSet(newValue: E): Promise<E>
  • Gets the old value and sets the new value.

    Parameters

    • newValue: E

      the new value

    Returns Promise<E>

    the old value

getName

  • getName(): string
  • Returns the unique name of this object.

    Returns string

getPartitionKey

  • getPartitionKey(): string
  • Returns the key of the partition that this DistributedObject is assigned to. For a partitioned data structure, the returned value will not be null, but otherwise undefined.

    Returns string

getServiceName

  • getServiceName(): string
  • Returns the service name for this object.

    Returns string

isNull

  • isNull(): Promise<boolean>
  • Checks if the stored reference is null.

    Returns Promise<boolean>

    true if null, false otherwise

set

  • set(newValue: E): Promise<void>
  • Atomically sets the given value.

    Parameters

    • newValue: E

      the new value

    Returns Promise<void>

Generated using TypeDoc