1 package com.atlassian.cache;
2
3 /**
4 * Used to pass in a manipulation to test concurrency issues
5 *
6 * @since v2.4.5
7 */
8 public interface CacheManipulator<K, V>
9 {
10 void manipulateKeyOn(final String key, final Cache<K, V> cache);
11 }