using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IFS { public class CopyDiskServer : PUPProtocolBase { /// /// Called by dispatcher to send incoming data destined for this protocol. /// /// public override void RecvData(PUP p) { BSPChannel newChannel = BSPManager.RecvData(p); if (newChannel != null) { // spwan new worker thread with new BSP channel } } } }