return;
}
if (command.isPassThroughPartMsg() == false) {
// large messages needs to be handled
SCMPCompositeSender largeResponse = NettyResponderRequestHandlerTask.compositeRegistry
.getSCMPLargeResponse(sessionId);
if (largeResponse != null && scmpReq.isPart()) {
// sending of a large response has already been started and incoming scmp is a pull request
if (largeResponse.hasNext()) {
// there are still parts to send to complete request
SCMPMessage nextSCMP = largeResponse.getNext();
// handling msgSequenceNr
msgSequenceNr.incrementAndGetMsgSequenceNr();
nextSCMP.setHeader(SCMPHeaderAttributeKey.MESSAGE_SEQUENCE_NR, msgSequenceNr.getCurrentNr());
response.setSCMP(nextSCMP);
response.write();