Package | Description |
---|---|
de.zib.scalaris |
This package contains means to communicate with the erlang scalaris ring from Java.
|
de.zib.scalaris.operations |
Modifier and Type | Method and Description |
---|---|
void |
Transaction.ResultList.processTestAndSetAt(int pos)
Processes the result at the given position which originated from
an add_on_nr request.
|
abstract void |
ResultList.processTestAndSetAt(int pos)
Processes the result at the given position which originated from
a test_and_set request.
|
void |
TransactionSingleOp.ResultList.processTestAndSetAt(int pos)
Processes the result at the given position which originated from
a test_and_set request.
|
void |
AbstractTransaction.testAndSet(OtpErlangString key,
OtpErlangObject oldValue,
OtpErlangObject newValue)
Stores the given key/new_value pair if the old value at
key is old_value (atomic test_and_set).
|
void |
Transaction.testAndSet(OtpErlangString key,
OtpErlangObject oldValue,
OtpErlangObject newValue) |
<OldT,NewT> |
AbstractTransaction.testAndSet(String key,
OldT oldValue,
NewT newValue)
Stores the given key/new_value pair if the old value at
key is old_value (atomic test_and_set).
|
<OldT,NewT> |
Transaction.testAndSet(String key,
OldT oldValue,
NewT newValue) |
Modifier and Type | Method and Description |
---|---|
Object |
Operation.processResult()
Processes the result set by
Operation.setResult(OtpErlangObject, boolean) . |
Object |
TestAndSetOp.processResult() |
ErlangValue |
ReadOp.processResultSingle() |
Object |
TransactionSingleOpOperation.processResultSingle()
Processes the result set by
Operation.setResult(OtpErlangObject, boolean)
assuming that operation was committed. |
Object |
TestAndSetOp.processResultSingle() |