org.infinispan.client.rest.RestContainerClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-client-rest-jakarta Show documentation
Show all versions of infinispan-client-rest-jakarta Show documentation
Infinispan REST Client Jakarta
package org.infinispan.client.rest;
import java.util.concurrent.CompletionStage;
/**
* @author Ryan Emerson
* @since 13.0
*/
public interface RestContainerClient {
/**
* Shuts down the container stopping all caches and resources. The servers remain running with active endpoints
* and clustering, however REST calls to container resources will result in a 503 Service Unavailable response.
*/
CompletionStage shutdown();
}