| 120 | } |
| 121 | |
| 122 | std::unique_ptr<core::ProcessGroup> FlowConfiguration::createRemoteProcessGroup(std::string name, utils::Identifier & uuid) { |
| 123 | return std::unique_ptr<core::ProcessGroup>(new core::ProcessGroup(core::REMOTE_PROCESS_GROUP, name, uuid)); |
| 124 | } |
| 125 | |
| 126 | std::shared_ptr<minifi::Connection> FlowConfiguration::createConnection(std::string name, const utils::Identifier& uuid) const { |
| 127 | return std::make_shared<minifi::Connection>(flow_file_repo_, content_repo_, name, uuid); |
no outgoing calls
no test coverage detected