Java Code Examples for com.google.protobuf.Int32Value#getDefaultInstance()
The following examples show how to use
com.google.protobuf.Int32Value#getDefaultInstance() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProtobufRedisLoadingCacheTest.java From curiostack with MIT License | 5 votes |
@BeforeEach void setUp() { cache = new ProtobufRedisLoadingCache<>( StringValue.getDefaultInstance(), Int32Value.getDefaultInstance(), TTL, null, remoteCache); }
Example 2
Source File: WellKnownTypeMarshaller.java From curiostack with MIT License | 4 votes |
private Int32ValueMarshaller() { super(Int32Value.getDefaultInstance()); }