| 115 | } |
| 116 | |
| 117 | std::shared_ptr<io::BaseStream> DatabaseContentRepository::write(const minifi::ResourceClaim &claim, bool append) { |
| 118 | return write(claim, append, nullptr); |
| 119 | } |
| 120 | |
| 121 | std::shared_ptr<io::BaseStream> DatabaseContentRepository::read(const minifi::ResourceClaim &claim) { |
| 122 | // the traditional approach with these has been to return -1 from the stream; however, since we have the ability here |
no test coverage detected