1 package com.atlassian.vcache;
2
3 import com.atlassian.annotations.PublicApi;
4
5 /**
6 * Represents an {@link ExternalCache} where the read operations are buffered.
7 * See the {@link ExternalCache} documentation for more information.
8 *
9 * @param <V> the value type
10 *
11 * @since 1.0
12 */
13 @PublicApi
14 public interface StableReadExternalCache<V>
15 extends ExternalCache<V>, ExternalWriteOperationsUnbuffered<V>
16 {
17 }