DeSerialize
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected