- Timestamp:
- 01/03/17 18:21:40 (8 years ago)
- Location:
- branches/PersistenceOverhaul
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul
- Property svn:ignore
-
old new 24 24 protoc.exe 25 25 obj 26 .vs
-
- Property svn:ignore
-
branches/PersistenceOverhaul/HeuristicLab.Persistence/4.0/Protos/PersistenceMessages.proto
r13375 r14537 15 15 extensions 100 to max; 16 16 } 17 17 18 18 19 // scalar boxes … … 79 80 repeated bool values = 1 [packed = true]; 80 81 } 82 message ByteArrayBox { 83 extend Box { 84 required ByteArrayBox byte_array = 121; 85 } 86 required bytes values = 1; 87 } 81 88 message IntArrayBox { 82 89 extend Box { 83 required IntArrayBox int_array = 12 1;90 required IntArrayBox int_array = 122; 84 91 } 85 92 repeated int32 values = 1 [packed = true]; … … 87 94 message LongArrayBox { 88 95 extend Box { 89 required LongArrayBox long_array = 12 2;96 required LongArrayBox long_array = 123; 90 97 } 91 98 repeated int64 values = 1 [packed = true]; … … 93 100 message UnsignedIntArrayBox { 94 101 extend Box { 95 required UnsignedIntArrayBox unsigned_int_array = 12 3;102 required UnsignedIntArrayBox unsigned_int_array = 124; 96 103 } 97 104 repeated uint32 values = 1 [packed = true]; 105 106 extensions 100 to max; 98 107 } 99 108 message UnsignedLongArrayBox { 100 109 extend Box { 101 required UnsignedLongArrayBox unsigned_long_array = 12 4;110 required UnsignedLongArrayBox unsigned_long_array = 125; 102 111 } 103 112 repeated uint64 values = 1 [packed = true]; … … 105 114 message FloatArrayBox { 106 115 extend Box { 107 required FloatArrayBox float_array = 12 5;116 required FloatArrayBox float_array = 126; 108 117 } 109 118 repeated float values = 1 [packed = true]; … … 111 120 message DoubleArrayBox { 112 121 extend Box { 113 required DoubleArrayBox double_array = 12 6;122 required DoubleArrayBox double_array = 127; 114 123 } 115 124 repeated double values = 1 [packed = true]; … … 117 126 message StringArrayBox { 118 127 extend Box { 119 required StringArrayBox string_array = 12 7;128 required StringArrayBox string_array = 128; 120 129 } 121 130 repeated string values = 1; … … 154 163 required uint32 comparer_id = 3; 155 164 } 165 166 message StorableClassBox { 167 extend Box { 168 required StorableClassBox storable_class = 200; 169 } 170 repeated uint32 key_ids = 1 [packed = true]; 171 repeated uint32 value_ids = 2 [packed = true]; 172 } 173 174 175 message TypeBox { 176 extend Box { 177 required TypeBox type = 250; 178 } 179 repeated uint32 generic_type_ids = 1 [packed = true]; 180 } 181
Note: See TracChangeset
for help on using the changeset viewer.