Changeset 13947
- Timestamp:
- 06/29/16 01:27:15 (8 years ago)
- Location:
- branches/thasling/DistributedGA/DistributedGA.Core/Implementation
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/thasling/DistributedGA/DistributedGA.Core/Implementation/PeerNetworkMessageHandler.cs
r13946 r13947 21 21 //provides current population for the higher layer IMigrationOperator 22 22 //two queues are used to gather and and provide population more efficiently 23 private staticobject activeQueueLocker = new Object();23 private object activeQueueLocker = new Object(); 24 24 private SizedConcurrentQueue<byte[]> writeQueue; 25 25 private SizedConcurrentQueue<byte[]> readQueue; -
branches/thasling/DistributedGA/DistributedGA.Core/Implementation/WcfMessageSender.cs
r13946 r13947 18 18 private Timer timer; //sends cached messages to network in background 19 19 20 private staticObject timerLock = new Object();20 private Object timerLock = new Object(); 21 21 22 22 public void Init(PeerInfo source) { -
branches/thasling/DistributedGA/DistributedGA.Core/Implementation/WcfPeerListManager.cs
r13946 r13947 16 16 private Timer timer = null; //sends heartbeat to contact-server 17 17 18 private staticObject timerLock = new Object();18 private Object timerLock = new Object(); 19 19 20 20 private ChannelFactory<IContactService> myChannelFactory;
Note: See TracChangeset
for help on using the changeset viewer.