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

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