MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / DeSerialize

Method DeSerialize

libminifi/include/FlowFileRecord.h:66–69  ·  view source on GitHub ↗

DeSerialize

Source from the content-addressed store, hash-verified

64 bool Persist(const std::shared_ptr<core::Repository>& flowRepository);
65 //! DeSerialize
66 static std::shared_ptr<FlowFileRecord> DeSerialize(const uint8_t *buffer, int bufferSize, const std::shared_ptr<core::ContentRepository> &content_repo, utils::Identifier& container) {
67 io::BufferStream inStream{buffer, gsl::narrow<unsigned int>(bufferSize)};
68 return DeSerialize(inStream, content_repo, container);
69 }
70 //! DeSerialize
71 static std::shared_ptr<FlowFileRecord> DeSerialize(io::InputStream &stream, const std::shared_ptr<core::ContentRepository> &content_repo, utils::Identifier& container);
72 //! DeSerialize

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected