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

Method update_attribute

python/minifi/__init__.py:125–127  ·  view source on GitHub ↗
(self, name, value)

Source from the content-addressed store, hash-verified

123 return self._minifi.add_attribute(self._ff, name.encode("UTF-8"), value.encode("UTF-8"), vallen) == 0
124
125 def update_attribute(self, name, value):
126 vallen = len(value)
127 self._minifi.update_attribute(self._ff, name.encode("UTF-8"), value.encode("UTF-8"), vallen)
128
129 def get_instance(self):
130 return self._ff

Callers

nothing calls this directly

Implementers 1

JniFlowFileextensions/jni/nifi-framework-jni/src/

Calls 1

encodeMethod · 0.80

Tested by

no test coverage detected