org.infinispan.hotrod.HotRodAsyncLocks Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-hotrod-jakarta Show documentation
Show all versions of infinispan-hotrod-jakarta Show documentation
Infinispan Hot Rod Client Jakarta EE
The newest version!
package org.infinispan.hotrod;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.Flow;
import org.infinispan.api.async.AsyncLock;
import org.infinispan.api.async.AsyncLocks;
import org.infinispan.api.configuration.LockConfiguration;
/**
* @since 14.0
**/
public class HotRodAsyncLocks implements AsyncLocks {
private final HotRod hotrod;
HotRodAsyncLocks(HotRod hotrod) {
this.hotrod = hotrod;
}
@Override
public CompletionStage create(String name, LockConfiguration configuration) {
return CompletableFuture.completedFuture(new HotRodAsyncLock(hotrod, name)); // PLACEHOLDER
}
@Override
public CompletionStage lock(String name) {
return CompletableFuture.completedFuture(new HotRodAsyncLock(hotrod, name)); // PLACEHOLDER
}
@Override
public CompletionStage remove(String name) {
return null;
}
@Override
public Flow.Publisher names() {
return null;
}
}