(Key<T> key, T value)
| 922 | private volatile byte[] serialized; |
| 923 | |
| 924 | static <T> LazyValue<T> create(Key<T> key, T value) { |
| 925 | return new LazyValue<>(checkNotNull(getBinaryStreamMarshaller(key)), value); |
| 926 | } |
| 927 | |
| 928 | /** A value set by the application. */ |
| 929 | LazyValue(BinaryStreamMarshaller<T> marshaller, T value) { |
no test coverage detected