MCPcopy Create free account
hub / github.com/CesiumGS/cesium-native / ProcessedContent

Class ProcessedContent

CesiumAsync/test/ExamplesAsyncSystem.cpp:77–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77struct ProcessedContent {
78 static ProcessedContent createFailed(const std::string& message) {
79 return ProcessedContent{message};
80 }
81
82 std::optional<std::string> failureMessage;
83
84 bool isFailed() const { return failureMessage.has_value(); }
85 std::string getFailureMessage() const {
86 return failureMessage ? *failureMessage : "";
87 }
88};
89
90ProcessedContent
91processDownloadedContent(const std::span<const std::byte>& /*bytes*/) {

Callers 2

processDownloadedContentFunction · 0.85

Calls

no outgoing calls

Tested by 2

processDownloadedContentFunction · 0.68