Fix NoActionHotRodTransactionWrapper using default exists implementation
Closes #19196
This commit is contained in:
parent
ad05557321
commit
637c47ac0e
1 changed files with 10 additions and 0 deletions
|
@ -69,6 +69,16 @@ public class NoActionHotRodTransactionWrapper<K, V extends AbstractEntity & Upda
|
||||||
return actualTx.delete(queryParameters);
|
return actualTx.delete(queryParameters);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean exists(String key) {
|
||||||
|
return actualTx.exists(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean exists(QueryParameters<M> queryParameters) {
|
||||||
|
return actualTx.exists(queryParameters);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void begin() {
|
public void begin() {
|
||||||
// Does nothing
|
// Does nothing
|
||||||
|
|
Loading…
Reference in a new issue