Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
6k views

Event Aggregator Implementation Sample / Best Practices

I'm looking for samples / best practices of Event Aggregator implementation. Anyone help ?
7
votes
2answers
178 views

Should related Backbone.js views have references to each other, or talk through events only?

I have an application that does CRUD for a Collection of Models. There is a DisplayView for each model that is always visible. There is also an EditView that is visible only when the associated ...
5
votes
3answers
324 views

How should one propagate events from one ViewModel to another ViewModel in MVVW?

I'm brand new to the MVVW pattern, so you'll have to forgive me if I'm asking a very basic question. I have two ViewModels, we'll call them TreeViewViewModel and ListViewViewModel. TreeViewViewModel ...
4
votes
3answers
91 views

When is it ok to combine 2 viewmodels into 1 instead of using some form of viewmodel-viewmodel communication?

I have 2 viewmodels that each have their own view. the first view model has 3 properties being displayed by the view: PolicyProvider PolicyType PolicyNumber the second view model has only 1 ...
4
votes
1answer
2k views

Trying to understand the event aggregator pattern

I am trying to implement the event aggregator pattern in a simple way to learn it step by step. But i didn't find any book or nice video tutorial talking about it's implementation. I just found some ...
4
votes
4answers
398 views

Screen synchronization - Event Aggregator VS Caching ViewModel References

i did some homework and couldn't find any article about best practices about when to use each method.. just for clarification: When using the event aggregator pattern : each screen has it's own ...
4
votes
2answers
1k views

EventAggregator vs CompositeCommand

I worked my way through the Prism guidance and think I got a grasp of most of their communication vehicles. Commanding is very straightforward, so it is clear that the DelegateCommand will be used ...
3
votes
1answer
87 views

Graceful application shutdown using WPF PRISM 4

I'm looking for a "best practice" (if there is even a best) for cleanly shutting an WPF application down that uses MEF and PRISM4. Ultimately, I'm looking for some sort of "Close Service" would ...
3
votes
1answer
311 views

EventAggregator Pattern: How To Pass Data?

I am looking at utilizing the Event Aggregator Pattern on a UI project I am working on (Silverlight/MVVM) to support loose coupling between views/viewmodels. We have written a few screens using a ...
3
votes
1answer
416 views

Prism:EventAggregator and MEF - 2 different instances of EventAggregator

I have the following setup: An Silverlight app split across xaps/modules I use MEF as DI framework to connect various parts of my application. I have 2 regions: One (the left one) is populated ...
3
votes
3answers
609 views

EventAggregator, is it thread-safe?

Is this thread-safe? The EventAggregator in Prism is a very simple class with only one method. I was surprised when I noticed that there was no lock around the null check and creation of a new type ...
3
votes
2answers
1k views

How Can I Add Event Aggregation To An Existing Silverlight App?

I have an existing Silverlight application where Page.xaml has some buttons on it that load user controls into a TransitioningContentControl content host. Each of these user controls is bound to a ...
2
votes
1answer
168 views

Domain Events v Event Aggregator v… other

I have a composite structure in my domain where the leaf node (Allocation) has a DurationChanged event that I would like to use at the top of my presentation layer view model structure (in the ...
2
votes
1answer
466 views

Caliburn.Micro and event aggregator -unwanted call handle method

I have one problem with publish/handle messages between 2 screens. My scenario is: Messenger screen, is it master screen, publish on chat screens, they are slave screens. Messenger view model ...
2
votes
1answer
306 views

WPF PRISM event subcriptions not dying

I have a PRISM RegionManager with a couple of region - a Ribbon region on the top, and a main content region for my view underneath it - fairly basic. The app starts with a "home" view in the main ...
2
votes
2answers
402 views

Issues with Event Aggregator using Reactive Extensions

To link up my MEF application, I'm using the event aggregator found here. Its been perfect for distributing data into modules that actually need it. I'm getting more into using the reactive ...
2
votes
3answers
233 views

Do you know a design patterns book or video talking about Event Aggregation pattern?

I trying to write my own Event Aggregation class and i go some articles but i want to go step by step with this pattern, for example i want to create it with 2 simple classes, such as User class and ...
2
votes
1answer
708 views

Mocking Prism Event Aggregator using Moq for Unit Testing

I need some advice on how to use Moq in a unit test to make sure that my class under test is behaving how I want. That is the class under test publishes an Event Aggregator (from Prism) event and I ...
2
votes
1answer
158 views

How do I tell if an action is a lambda expression?

I am using the EventAgregator pattern to subscribe and publish events. If a user subscribes to the event using a lambda expression, they must use a strong reference, not a weak reference, otherwise ...
2
votes
1answer
118 views

Castle Windsor: custom processing when starting service

Is it possible to perform some custom processing when Windsor instantiates a type? Something similar to: container.Register( AllTypes.Pick() ...
2
votes
2answers
1k views

Prism Event Aggregation - subscriber not triggered

I'm working on implementing an event aggregation with Prism. I have a few modules, and I want each of them to subscribe to events that tells them when they are requested. I started out doing an all ...
2
votes
1answer
487 views

What is the best method to load Views dynamically from a Navigation control in Prism

I've implemented navigation through my application using a Menu control which publish an event using EventAggregator on click of menu item. Something like as shown below, ...
2
votes
1answer
549 views

Composite WPF EventAggregator subscriptions being lost

In my Composite WPF application I have an event that is published when the user double-clicks on a control. Modules subscribe to the event and perform an action when necessary. This event seems to ...
1
vote
1answer
49 views

eventaggregator vs services

When developping rather large applications using Prism and MEF/Unity I always reach a point where I should choose between using events, a service or maybe both. And I cannot decide what's most usable. ...
1
vote
2answers
78 views

Using UnityEventAggregator only from Prism

I am trying to use the Unity event aggregator to do messaging between various parts of an application. Currently, this is the only feature of the Prism framework that I would like to use. I am ...
1
vote
1answer
291 views

Caliburn.Micro. Automatically call eventaggregator.Subscribe() for IHandle implementors with Autofac

In Caliburn.Micro documentation the authors mention such possibility: documentation link IHandle inherits from a marker interface IHandle. This allows the use of casting to determine if an object ...
1
vote
1answer
78 views

Problem with Cal, EventAggregator, and Application.Deactivated

I'm having an interesing problem with CAL and the event aggregator. I am attempting to publish an event when the app is deactivated or activated (application.activated and application.deactivated). ...
1
vote
1answer
178 views

Should I use event aggregator only to prevent memory leaks?

We consider to use the Prism event aggregator for the purpose of reducing memory leaks due to event references. Is this for itself a valid reason to use this pattern? The other benefits are not ...
1
vote
1answer
377 views

Rhino Mocks and PRISM EventAggregator

I need to do something that seems quite simple, but I cant seem to achieve it. I need to be able to write a unit test that calls the action and filter delegates of any subscription to an ...
1
vote
3answers
607 views

ViewModel to ViewModel Communication

Given the following scenario: ViewModelA launches ViewModelB (via a common Controller, of course, that uses Ioc and DI to resolve the types needed). ViewModelB needs to set a property value in ...
1
vote
2answers
168 views

How do I create a generic method with a generic in the where clause? (Man that's clear as mud!)

Is there a way of doing this: protected void SubscribeToEvent<TEvent, TPayload>(Action<TPayload> a_action) where TEvent : CompositePresentationEvent<TPayload> { TEvent ...
1
vote
2answers
356 views

Using EventAggregator (or something else - IoC maybe) with MEF

I am currently building an MEF project so I can learn how to use it in practical applications. I have successfully imported a DataHandler module to provide database connections and other centralized ...
1
vote
1answer
261 views

Large Prism/Silverlight application - multiple modules talking to single data service

I am developing the framework for what will be a large data-driven Silverlight application using Prism. I am creating multiple modules for different pieces of the application, but all modules need to ...
1
vote
1answer
321 views

How ISubject and Subject will look like in this sample and are the sample using them in the right place?

I got this sample http://jfromaniello.blogspot.com/2010/04/event-aggregator-with-reactive.html, Which describe event aggregator pattern using .net 4.0 but i didn't find in the sample code the ...
1
vote
1answer
176 views

Handling Page Size Change Events with Prism and Event Aggregator

I need to capture when the Page_SizeChanged event fires in a WPF Browser application and publish the event through the Prism EventAggregator. Since the page I am interested in happens to be the Shell ...
1
vote
1answer
129 views

Event aggregator for Exj JS

Do you know of any reliable event aggregator implementation for ExtJs?
1
vote
1answer
969 views

How do I test Prism event aggregator subscriptions, on the UIThread?

I have a class, that subscribes to an event via PRISMs event aggregator. As it is somewhat hard to mock the event aggregator as noted here, I just instantiate a real one and pass it to the system ...
0
votes
1answer
17 views

Mediator file in silverlight mvvm applications

In silverlight-MVVM applications, we have to use some kind of mediator/even aggregator file..to commuunicate between different viewmodels. But I can see that these files maintains list(or dictionary) ...
0
votes
1answer
32 views

Publisher clarification for Event Aggregator design pattern

I would like to clarify the role of the "publisher" in the Event Aggregator design pattern. My current solution handles .NET data events, such as DataTable or XmlNode events occuring in a DataSet or ...
0
votes
2answers
70 views

Event Aggregator: need help modifying solution

I'm attempting to design an event aggregator for my application. (I am new to the design pattern, so I may not fully understand it yet). Firstly, I have created a solution already that is somewhat an ...
0
votes
1answer
49 views

Event Aggregator for Distributed Applications

I am implementing an application using Prism. The application has a few distributed components that resides on various machines or servers. In order to communicate them, I am planning to implement ...
0
votes
1answer
137 views

Prism EventAggregator and MVVM Light Messenger Summary

Can someone please give me good overview of the Prism EventAggregator in comparison to the MVVM Light Messenger service? Specifically; Are they similiar things, or meant for wholly different ...
0
votes
3answers
124 views

How to verify the EventAggregator's unsubscribe method is called when disposing a ViewModel with Prism

I'm struggling to write a test that confirms that I am correctly unsubscribing from an EventAggregator's message when it is closed. Anyone able to point out the (simple) answer?! Here is the code: ...
0
votes
1answer
64 views

How to determine who is calling the prism eventaggregator subscribe? or multiple subscribe calls

I have a subscribe method in one view model listening for publish events in another view model. For some reason, that I can't figure out, when the publish method is fired, the subscribe method runs ...
0
votes
2answers
117 views

Message publishing based programming?

Ever since learned about using event aggregators to publish messages instead of using events I've managed to most events in my code (minus the ones that connect WPF control properties to my code). The ...
0
votes
1answer
83 views

EventAggregator for .net 2.0

In my .net 2.0 Win Forms application I want to raise something like OnProgress event from many different places/classes, and handle all these events in one place. We're using Microsoft's ...
0
votes
1answer
203 views

PRISM and event aggregator

I have a PRISM WPF application; and I have a PatientViewModel that in its constructor subscribes to an event (let's say CultureChangedEvent), and executes an action. In my main view model I have an ...
0
votes
0answers
71 views

MethodInfo.Invoke Works only in Debug Mode for Prism EventAggregator

I have a extension method for Prism's EventAgregator to publish an event using reflection. The implementation is as follows: MethodInfo raiseMethod = typeof(Extensions).GetMethod("Raise", ...
0
votes
2answers
203 views

Non-Generic CompositePresentationEvent and EventSubscription?

I am trying to create a TPayLoad-free CompositePresentationEvent, that its delegate is parameterless. I want to have a global application event that takes no parameters such as UserLoggedInEvent, ...
0
votes
1answer
172 views

EventAggregation quick start?

I am created a MainView that it's DataContext is a MainViewModel initialized in xaml. The MainView contains a ContentControl that is bound to the Content property of the MainViewModel. I added some ...

1 2