public async Task <string> QueueUpTweets(CancellationToken cancellationToken)
        {
            _runtimeStatsService.RunningCollection = true;
            string result = "Reciving Tweets...";

            try
            {
                result = await _streamService.ReciveTweets(_httpClientProvider, _twitterConfiguration, _incommingTweetQueue, _streamReaderHandler, cancellationToken);
            }
            catch (Exception exc)
            {
                throw exc;
            }
            return(result);
        }