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

Function FlowControlMsgIdToStr

libminifi/include/FlowControlProtocol.h:112–117  ·  view source on GitHub ↗

Flow Control Msg Id to String

Source from the content-addressed store, hash-verified

110
111// Flow Control Msg Id to String
112inline const char *FlowControlMsgIdToStr(FlowControlMsgID id) {
113 if (id < MAX_FLOW_MSG_ID)
114 return FlowControlMsgIDStr[id];
115 else
116 return nullptr;
117}
118
119// Flow Control Respond status code
120typedef enum {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected