protected override void BeforeSend(BrokeredMessage msg)
		{
			var subDesc = new SubscriptionDescriptionImpl(topic.Description.Path, "Nils Sture listens to the Radio".Replace(" ", "-"))
				{
					EnableBatchedOperations = false,
					LockDuration = 1.Milliseconds(),
					MaxDeliveryCount = 1
				};
			var subscribe = topicClient.Subscribe(topic, subDesc).Result;
			subscriber = subscribe;
		}
        protected override void BeforeSend(BrokeredMessage msg)
        {
            var subDesc = new SubscriptionDescriptionImpl(topic.Description.Path, "Nils Sture listens to the Radio".Replace(" ", "-"))
            {
                EnableBatchedOperations = false,
                LockDuration            = 1.Milliseconds(),
                MaxDeliveryCount        = 1
            };
            var subscribe = topicClient.Subscribe(topic, subDesc).Result;

            subscriber = subscribe;
        }