DeltaCrdt.read
You're seeing just the function
read
, go back to DeltaCrdt module for more information.
This function is deprecated. Use get/2 or take/3 or to_map/2.
Specs
Read the state of the CRDT.
Forwards arguments to the used crdt module, so read(crdt, ["my-key"])
would call crdt_module.read(state, ["my-key"])
.
For example, DeltaCrdt.AWLWWMap
accepts a list of keys to limit the returned values instead of returning everything.