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

Function get_processor_properties

nanofi/src/api/ecu.c:217–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217struct proc_properties * get_processor_properties(const char * uuid) {
218 if (!uuid) {
219 return NULL;
220 }
221 struct processor_params * pp = NULL;
222 HASH_FIND_STR(procparams, uuid, pp);
223 if (!pp) {
224 return NULL;
225 }
226 return pp->properties;
227}
228
229void add_processor_properties(const char * uuid, struct proc_properties * const props) {
230 struct processor_params * pp = get_proc_params(uuid);

Callers 2

on_trigger_tailfilechunkFunction · 0.85
get_propertiesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected