// copy the ChannelBuffer to a byte array to process the LineHandler
line = new byte[buf.capacity()];
buf.getBytes(0, line);
}
LineHandler lHandler= (LineHandler) lineHandlers.getLast();
long start = System.currentTimeMillis();
boolean disconnect = lHandler.onLine(pSession,line);
long executionTime = System.currentTimeMillis() - start;
for (int i = 0; i < resultHandlers.size(); i++) {
disconnect = resultHandlers.get(i).onResponse(pSession, disconnect, executionTime, lHandler);
}