com.fasterxml.clustermate.client.call.EntryInspector 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.api.msg.ItemInfo;
import com.fasterxml.clustermate.client.util.ContentConverter;
/**
* Accessor used for accessing metadata for specified entry.
*/
public interface EntryInspector
{
public ReadCallResult tryInspect(CallConfig config,
ReadCallParameters params, long endOfTime,
K key, ContentConverter converter);
}