public bool Stop(HostControl hostControl) { _distributor.Dispose(); _distributor = null; return true; }
public bool Start(HostControl hostControl) { _distributor = new MsmqDistributor(ConfigurationManager.AppSettings["SourceQueue"], ConfigurationManager.AppSettings["DestQueues"].Split(';')); return true; }