com.fasterxml.clustermate.client.call.ContentDeleter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-client Show documentation
Show all versions of clustermate-client Show documentation
Building blocks for client libraries that access
ClusterMate-based service.
package com.fasterxml.clustermate.client.call;
import com.fasterxml.clustermate.api.EntryKey;
import com.fasterxml.clustermate.client.CallFailure;
/**
* Interface for a general purpose DELETE accessor, for a resource stored
* in a single server; one accessor per server and end point.
*/
public interface ContentDeleter
{
public CallFailure tryDelete(CallConfig config, DeleteCallParameters params,
long endOfTime, K key);
}