Esempio n. 1
0
    public void SendNotification <T>(string observeName, T body, Type type)
    {
        EventNotifaction <T> notify = EventNotifaction <T> .Allocate(observeName, body, type);

        NotifyObservers(notify);
        notify.Release();
    }