public void RemoveTweet(long id, string streamName)
        {
            TwitterStream ts = streamManager.GetStream(streamName);

            if (ts != null)
            {
                ts._tweetRepo.Remove(id);
                ts.RemoveTweet(id);
                Clients.Group(streamName).tweetRemoved(id);
            }
        }