Esempio n. 1
0
        /// <summary>
        /// Starting the Distributor without a worker running on its endpoint
        /// </summary>
        /// <param name="config"></param>
        /// <returns></returns>
        public static Configure RunDistributorWithNoWorkerOnItsEndpoint(this Configure config)
        {
            config.RunDistributor();
            workerShouldNotRunOnDistributorEndpoint = true;

            return(config);
        }
Esempio n. 2
0
 public static Configure RunDistributorWithNoWorkerOnItsEndpoint(this Configure config)
 {
     config.RunDistributor(false);
     return(config);
 }