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 * @since 1.0
11 */
12 @PublicApi
13 public interface StableReadExternalCache<V>
14 extends ExternalCache<V>, ExternalWriteOperationsUnbuffered<V> {
15 }