public void SendNotification <T>(string observeName, T body, Type type) { Notification <T> notify = Notification <T> .Allocate(observeName, body, type); NotifyObservers(notify); notify.Release(); }