Skip to content

Commit 01fe7c8

Browse files
authored
COH-32929 - Add ttl parameter in putAll() api of gRPC v0 implementation (#279)
* COH-32929 - Add ttl parameter in putAll() api of gRPC v0 implementation
1 parent d55efb0 commit 01fe7c8

25 files changed

+1602
-915
lines changed

etc/proto/common_messages_v1.proto

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2024, Oracle and/or its affiliates.
2+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl.
@@ -59,3 +59,19 @@ message BinaryKeyAndValue {
5959
// The serialized binary value.
6060
bytes value = 2;
6161
}
62+
63+
// A message that contains a collection of string values.
64+
message CollectionOfStringValues {
65+
// The string values
66+
repeated string values = 1;
67+
}
68+
69+
// A collection of in32 values
70+
message CollectionOfInt32 {
71+
repeated int32 values = 1;
72+
}
73+
74+
// A collection of in32 values
75+
message CollectionOfInt64 {
76+
repeated int64 values = 1;
77+
}

0 commit comments

Comments
 (0)