You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/DataBlobs/entities/BlobEntry.jl
+12-7Lines changed: 12 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,13 @@ A `Blobentry` is a small about of structured data that holds reference informati
8
8
can exist on different graph nodes spanning Agents and Factor Graphs which can all reference the same `Blob`.
9
9
10
10
Notes:
11
-
- `blobid`s should be unique within a blobstore and are immutable.
11
+
- `blobid`s should be unique within a Blobstore and are immutable.
12
12
"""
13
13
StructUtils.@kwargstruct Blobentry
14
14
""" Human friendly label of the `Blob` and also used as unique identifier per node on which a `Blobentry` is added. E.g. do "LEFTCAM_1", "LEFTCAM_2", ... of you need to repeat a label on the same variable. """
15
15
label::Symbol
16
-
""" The label of the `Blobstore` in which the `Blob` is stored. Default is `:default`."""
17
-
blobstore::Symbol=:default
16
+
""" The label of the `Blobstore` in which the `Blob` is stored. Default is `:primary`."""
17
+
storelabel::Symbol=:primary
18
18
""" Machine friendly and unique within a `Blobstore` identifier of the 'Blob'."""
19
19
blobid::UUID=uuid4() # was blobId
20
20
""" (Optional) crc32c hash value to ensure data consistency which must correspond to the stored hash upon retrieval."""
0 commit comments