Constructor ! * Create a new processor */
| 112 | * Create a new processor |
| 113 | */ |
| 114 | explicit GetFile(const std::string& name, const utils::Identifier& uuid = {}) |
| 115 | : Processor(name, uuid), |
| 116 | metrics_(std::make_shared<GetFileMetrics>()), |
| 117 | last_listing_time_(0), |
| 118 | logger_(logging::LoggerFactory<GetFile>::getLogger()) { |
| 119 | } |
| 120 | // Destructor |
| 121 | ~GetFile() override = default; |
| 122 |
nothing calls this directly
no outgoing calls
no test coverage detected