Skip to content

Commit

Permalink
Adding disclaimer comment for EVCacheInternalImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumanth Pasupuleti [email protected] committed Aug 3, 2020
1 parent a81395b commit 8f56c78
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.Map;
import java.util.concurrent.Future;

interface EVCacheInternal extends EVCache {
public interface EVCacheInternal extends EVCache {
EVCacheItem<CachedData> metaGet(String key, Transcoder<CachedData> tc, boolean isOriginalKeyHashed) throws EVCacheException;

Map<MemcachedNode, CachedValues> metaGetPerClient(String key, Transcoder<CachedData> tc, boolean isOriginalKeyHashed) throws EVCacheException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
import java.util.concurrent.Future;
import java.util.stream.Collectors;

/**
* This class is for internal-use only by EVCache components, and is not recommended to be used for any other purpose. EVCache and EVCacheImpl are recommended instead.
*/
class EVCacheInternalImpl extends EVCacheImpl implements EVCacheInternal {
private static final Logger log = LoggerFactory.getLogger(EVCacheInternalImpl.class);

Expand Down

0 comments on commit 8f56c78

Please sign in to comment.