/// <summary>
 /// The process.
 /// </summary>
 /// <param name="content">
 /// The content.
 /// </param>
 /// <param name="showNotifications">
 /// The show notifications.
 /// </param>
 public void Process(string content, bool showNotifications)
 {
     dynamic jsonObject = JsonConvert.DeserializeObject(content);
     
     if (jsonObject.ObjectType == "submittedlink")
     {
         SendLinkNotification(content, showNotifications);
     }
     else if (jsonObject.ObjectType == "subscription")
     {
         this.AddSubscription(content);
     }
     else if (jsonObject.streamKey != null)
     {
         var store = new SubscriptionStore();
         store.Remove((string)jsonObject.streamKey);
     }
 }