protected FFTransceiver(FFTransceiverArgs arg, IExecutorService executorService)
     : base(executorService)
 {
     _arg = arg;
     this.Initialize();
 }
 public static IFFTransceiver Create(FFTransceiverArgs args, IExecutorService executorService)
 {
     return(new FFTransReceiver_InMemory(args, executorService));
 }
 public static IFFTransceiver Create(FFTransceiverArgs args, IExecutorService executorService)
 {
     return new FFTransReceiver_InMemory(args, executorService);
 }
 public FFTransReceiver_InMemory(FFTransceiverArgs arg, IExecutorService executorService)
     : base(arg, executorService)
 {
     // create a listener thread and do the receive processing
     _queue = ProducerConsumerQueueFactory.Create<UdpFreeformEntity>(executorService, -1);
 }
Example #5
0
 public FFTransReceiver_InMemory(FFTransceiverArgs arg, IExecutorService executorService)
     : base(arg, executorService)
 {
     // create a listener thread and do the receive processing
     _queue = ProducerConsumerQueueFactory.Create <UdpFreeformEntity>(executorService, -1);
 }
 protected FFTransceiver(FFTransceiverArgs arg, IExecutorService executorService)
     : base(executorService)
 {
     _arg = arg;
     this.Initialize();
 }