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

Method create

extensions/script/lua/LuaProcessSession.cpp:96–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96std::shared_ptr<script::ScriptFlowFile> LuaProcessSession::create() {
97 if (!session_) {
98 throw std::runtime_error("Access of ProcessSession after it has been released");
99 }
100
101 auto result = std::make_shared<script::ScriptFlowFile>(session_->create());
102 flow_files_.push_back(result);
103 return result;
104}
105
106std::shared_ptr<script::ScriptFlowFile> LuaProcessSession::create(const std::shared_ptr<script::ScriptFlowFile> &flow_file) {
107 if (!session_) {

Callers 15

processOnTriggerMethod · 0.45
processOnTriggerMethod · 0.45
onFrameMethod · 0.45
onTriggerMethod · 0.45
onTriggerMethod · 0.45
onTriggerMethod · 0.45
onTriggerMethod · 0.45
processQueueMethod · 0.45
onTriggerMethod · 0.45
onTriggerMethod · 0.45
onTriggerMethod · 0.45

Calls 1

getFlowFileMethod · 0.80

Tested by 1

onTriggerMethod · 0.36