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

Function FlowControlRespCodeToStr

libminifi/include/FlowControlProtocol.h:133–138  ·  view source on GitHub ↗

Flow Control Resp Code to String

Source from the content-addressed store, hash-verified

131
132// Flow Control Resp Code to String
133inline const char *FlowControlRespCodeToStr(FlowControlRespCode code) {
134 if (code < MAX_RESP_CODE)
135 return FlowControlRespCodeStr[code];
136 else
137 return nullptr;
138}
139
140// Common FlowControlProtocol Header
141typedef struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected