Package org.infinispan.client.rest
Interface RestCounterClient
- All Known Implementing Classes:
RestCounterClientOkHttp
public interface RestCounterClient
- Since:
- 10.0
- Author:
- Tristan Tarrant <tristan@infinispan.org>
-
Method Summary
Modifier and TypeMethodDescriptionadd(long delta) compareAndSet(long expect, long value) compareAndSwap(long expect, long value) configuration(String mediaType) create(RestEntity configuration) delete()get()reset()
-
Method Details
-
create
-
delete
CompletionStage<RestResponse> delete() -
configuration
CompletionStage<RestResponse> configuration() -
configuration
-
get
CompletionStage<RestResponse> get() -
add
-
increment
CompletionStage<RestResponse> increment() -
decrement
CompletionStage<RestResponse> decrement() -
reset
CompletionStage<RestResponse> reset() -
compareAndSet
-
compareAndSwap
-