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

Function FlowControlMsgIdToStr

libminifi/test/Server.cpp:104–109  ·  view source on GitHub ↗

Flow Control Msg Id to String

Source from the content-addressed store, hash-verified

102
103// Flow Control Msg Id to String
104inline const char *FlowControlMsgIdToStr(FlowControlMsgID id) {
105 if (id < MAX_FLOW_MSG_ID)
106 return FlowControlMsgIDStr[id];
107 else
108 return NULL;
109}
110
111// Flow Control Respond status code
112typedef enum {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected