This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Algorithm link buffer interchange functions

I'm using an algorithm link that is created by someone else and it is linked to null link (it forward data to null link). But that algorithm link doesn't call functions like AlgorithmLink_putFullOutputBuffer() or AlgorithmLink_getEmptyOutputBuffer()  in its process function, and now I'm not sure what is going on with input buffer. Input buffers are composite buffers. It calls functions System_sendLinkCmd(..........nextLink, SYSTEM_CMD_NEW_DATA, NULL) and AlgorithmLink_releaseInputBuffer(). Are input buffers being sent to the next link even if those fuctions for output buffer aren't being called or not? I'm trying to send these buffers over the network using null link (the one who created that algorithm link used null link just to take input buffers from previous link and return it back, just for testing purpose).