MQ Start and Stop after Config

I’m looking into ways to pause handling of messages. Can Stop and Start be called on MQ hosts after config (bootup)?

I’ve tried calling this.TryResolve<IMessageService>().Start(); within a service and that seems to work fine.

You can Stop()/Start() at runtime but keep in mind it can be a fairly expensive operation where all the worker handler Threads need to be stopped and spun up again.

1 Like