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
| [![CI][dfg-ci-stb-img]][dfg-ci-stb-url] | [![CI][dfg-ci-dev-img]][dfg-ci-dev-url] <br> [](https://github.com/JuliaRobotics/DistributedFactorGraphs.jl/issues) | [![codecov.io][dfg-cov-img]][dfg-cov-url] <br> [](https://github.com/JuliaRobotics/DistributedFactorGraphs.jl/issues) | [](http://juliarobotics.github.io/DistributedFactorGraphs.jl/latest/) <br> [](http://juliarobotics.github.io/Caesar.jl/latest/)
Copy file name to clipboardExpand all lines: src/DataBlobs/entities/BlobEntry.jl
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Base.@kwdef struct Blobentry
17
17
id::Union{UUID, Nothing}=nothing
18
18
""" Machine friendly and globally unique identifier of the 'Blob', usually assigned from a common point in the system. This can be used to guarantee unique retrieval of the large data blob. """
19
19
blobId::Union{UUID, Nothing}=uuid4() #Deprecated in v0.25 TODO remove union, blobId is mandatory
20
-
""" Machine friendly and locally assigned identifier of the 'Blob'. `.originId`s are mandatory upon first creation at the origin regardless of network access. Separate from `.blobId` since some architectures do not allow edge processes to assign a uuid4 to data store elements. """
20
+
"""TBD if Deprecated. Machine friendly and locally assigned identifier of the 'Blob'."""
21
21
originId::Union{UUID, Nothing}= blobId #Deprecated in v0.25 TODO remove union or remove originId completely
22
22
""" 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. """
0 commit comments