- Timestamp:
- 08/12/16 09:15:12 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/thasling/DistributedGA/DistributedGA.ContactServer/ContactServiceImpl.cs
r14074 r14252 11 11 12 12 [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)] 13 public class ContactServiceImpl : IContactService {13 public class ContactServiceImpl : IContactService, IDisposable { 14 14 15 15 private ConcurrentDictionary<PeerInfo, DateTime> allPeers = null; … … 105 105 } 106 106 107 public void Dispose() { 108 timer.Stop(); 109 timer.Dispose(); 110 timer = null; 111 } 112 107 113 } 108 114 }
Note: See TracChangeset
for help on using the changeset viewer.