#include "stdafx.h" #include "MultiThreadDispatch.h" #include #include #include #include CRylServerMultiThreadDispatch::CRylServerMultiThreadDispatch( CSession& Session, unsigned long dwMaxProcessPacketPerPulse) : CRylServerDispatch(Session, dwMaxProcessPacketPerPulse) { } CRylServerMultiThreadDispatch::~CRylServerMultiThreadDispatch() { } bool CRylServerMultiThreadDispatch::ParsePacket(char* const lpStream_In, unsigned long* dwStreamSize_InOut) { return CRylServerDispatch::ParsePacket(lpStream_In, dwStreamSize_InOut) ? Dispatch() : false; }