A value set by the application.
(BinaryStreamMarshaller<T> marshaller, T value)
| 927 | |
| 928 | /** A value set by the application. */ |
| 929 | LazyValue(BinaryStreamMarshaller<T> marshaller, T value) { |
| 930 | this.marshaller = marshaller; |
| 931 | this.value = value; |
| 932 | } |
| 933 | |
| 934 | InputStream toStream() { |
| 935 | return checkNotNull(marshaller.toStream(value), "null marshaller.toStream()"); |
nothing calls this directly
no outgoing calls
no test coverage detected