Tagged Questions

The observer pattern (a subset of the publish/subscribe pattern) is a software design pattern in which an object, called the subject, maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods.

learn more… | top users | synonyms

17
votes
12answers
2k views

Problems implementing the “Observer” pattern

I have met an interesting problem while implementing the Observer pattern with C++ and STL. Consider this classic example: class Observer { public: virtual void notify() = 0; }; class Subject { ...
15
votes
6answers
732 views

Rails audit system with both ActiveResource and ActiveRecord

I have a huge project with both of ActiveRecord and ActiveResource models. I need to implement logging of user activity with these models and also to log changes of model attributes (save object state ...
15
votes
10answers
3k views

C#: events or an observer interface? Pros/cons?

I've got the following (simplified): interface IFindFilesObserver { void OnFoundFile(FileInfo fileInfo); void OnFoundDirectory(DirectoryInfo directoryInfo); } class FindFiles { ...
14
votes
5answers
616 views

Rails 3: How to identify after_commit action? (create/update/destroy)

I have an observer and I register an after_commit callback. How can I tell weather it was fired after create or update? I can tell an item was destroyed by asking item.destroyed? but new_record? ...
14
votes
19answers
1k views

How you would you describe the Observer pattern in beginner language?

Currently, my level of understanding is below all the coding examples on the web about the Observer Pattern. I understand it simply as being almost a subscription that updates all other events when a ...
13
votes
4answers
275 views

How can I Observe the contents of an 'a' tag - jquery

I have a blank <a> tag that content is loaded into via an external piece of javascript. I want to observe the <a> and when its content changes perform another task. The content will only ...
12
votes
7answers
538 views

Pros and Cons of Listeners as WeakReferences

What are the pros and cons of keeping listeners as WeakReferences. The big 'Pro' of course is that: Adding a listener as a WeakReference means the listener doesnt need to bother 'removing' itself. ...
11
votes
3answers
3k views

Observers vs. Callbacks

i thought about using observers or callbacks. What and when you should use an observer? F.e. you could do following: # User-model class User << AR after_create :send_greeting! def ...
11
votes
4answers
9k views

Super-simple example of C# observer/observable with delegates

I recently started digging into C# but I can't by my life figure out how delegates work when implementing the observer/observable pattern in the language. Could someone give me a super-simple example ...
10
votes
2answers
2k views

Is there a recommended way to use the Observer pattern in MVP using GWT?

I am thinking about implementing a user interface according to the MVP pattern using GWT, but have doubts about how to proceed. These are (some of) my goals: the presenter knows nothing about the ...
10
votes
3answers
5k views

When should I remove observers? Error about deallocating objects before removing observers

I am trying to use key-value observing in one of my classes. I register the observers in the init method and remove/deregister them in the dealloc, but I get the following error which seems to occur ...
9
votes
2answers
5k views

Rails 3 Observer — looking to learn how to implement an Observer for multiple models

I'd like to add an Auditor Observer which does an action anytime after_create for 3 models (books, characters, authors)... I recently heard of the Observer capability but can't find any documentation ...
9
votes
4answers
3k views

How to create a full Audit log in Rails for every table?

We recently began a compliance push at our company and are required to keep a full history of changes to our data which is currently managed in a Rails application. We've been given the OK to simply ...
9
votes
4answers
3k views

Python Observer Pattern: Examples, Tips?

Are there any exemplary examples of the GoF Observer implemented in Python? I have a bit code which currently has bits of debugging code laced through the key class (currently generating messages to ...
8
votes
9answers
394 views

Observable in Java

I'm trying to understand the Observer and the Observable. Here's an example that I'm trying to figure out: public class IntegerDataBag extends Observable implements Iterable<Integer> { ...
8
votes
2answers
2k views

Determine what attributes were changed in Rails after_save callback?

I'm setting up an after_save callback in my model observer to send a notification only if the model's published attribute was changed from false to true. Since methods such as changed? are only useful ...
8
votes
4answers
1k views

Good way to have a Collection Listener?

Is there a better way to have a listener on a java collection than wrap it in a class implementing the observer pattern ?
7
votes
2answers
1k views

Observer Design Pattern vs “Listeners”

It seems to me that the Observer design pattern as described in GOF is really the same thing as Listeners found in various toolkits. Is there a difference between the concepts, or are Listeners and ...
7
votes
5answers
1k views

Observe a File or Folder in Objective-C

What is the best way to listen to a folder or file to see if it has been saved or if a new file has been added?
6
votes
2answers
67 views

Avoid exposing implementation details when implementing an observer pattern in Java?

I'm coming to Java from C# where events are first class citizens and event handlers can be private methods. I'm now working on a Java project where I of course need to use an Observer pattern to ...
6
votes
3answers
7k views

How can I update information in an Android Activity from a background Service

I am trying to create a simple Android application that has a ActivityList of information, when the application starts, I plan to start a Service that will be constantly calculating the data (it will ...
6
votes
8answers
3k views

Best Publish/Subscribe “Middleware”

I'm in the market for a good open source network based Pub/Sub (observer pattern) library. I haven't found any I like: JMS - tied to Java, treats message contents as dumb binary blobs NDDS - $$, ...
6
votes
1answer
3k views

Observer pattern implemented in C# with delegates?

There is a question already answered which is http://stackoverflow.com/questions/32034/in-c-isnt-the-observer-pattern-already-implemented-using-events It asks if the observer pattern is already ...
6
votes
5answers
6k views

C# Plugin Architecture with interfaces share between plugins

I divided my problem into a short and a long version for the people with little time at hand. Short version: I need some architecture for a system with provider and consumer plugins. Providers ...
6
votes
2answers
920 views

Data Mapper + Observer pattern

I'm building an app in PHP and I'm using the data mapper pattern for my DB access. I was considering using the Observer pattern to have all my mappers observe the entities they create, so that they ...
5
votes
2answers
154 views

Observer Design Pattern - Concrete Subjects and Observers

The references (GOF Design Patterns, Head First Design Patterns, http://www.dofactory.com/Patterns/PatternObserver.aspx) that I've read regarding the observer design pattern stipulate that the ...
5
votes
3answers
355 views

Magento - customer_save_after always fired twice

I am using the customer_save_after event in magento, and all is working fine apart from 1 annoying thing - it is always fired twice. There are no other modules rewriting this and I can find no other ...
5
votes
2answers
613 views

Should I store my Rails 3 observers in the app/models directory?

or do they belong in their own place?
5
votes
4answers
116 views

Best way to send an email upon creation of a new model instance in Rails?

I have an app with the following models: User, Task, and Assignment. Each Assignment belongs_to a User and a Task (or in other words, a Task is assigned to a User via an Assignment). Once a User ...
5
votes
5answers
266 views

Observer over a network

I want to have an event driven architecture where the event consumer (subscriber/observer) and the event producer (publisher/subject) are over a distributed geography. Is there something in .NET that ...
5
votes
4answers
4k views

Example of JavaScript observer pattern

Can anybody send me the good links of the observer pattern in JavaScript?
5
votes
3answers
2k views

Should I add support for PropertyChangeSupport and PropertyChangeListener in a Java bean for a web application?

I noticed that some people write beans with support for the Property Change observer pattern. import java.beans.PropertyChangeListener; import java.beans.PropertyChangeSupport; import ...
5
votes
4answers
1k views

How is the Observer pattern different from an Event driven model?

I am a senior level developer but I haven't had a lot of formal training and I although I have used many design patterns and seen them used in my years as a developer, no one really went out of their ...
5
votes
2answers
2k views

How do I modify existing AS3 events so that I can pass data?

So I want a way to set up events so that I can pass data without creating closures \ memory leaks. This is as far as I have got: package com.events { import flash.events.Event; public class ...
5
votes
6answers
6k views

Should I use a Listener or Observer?

I have a dropdown box in my GUI which shows the contents of an ArrayList in another class. New objects can be added to the ArrayList elsewhere in the GUI, so I need to know when it is updated, so I ...
5
votes
11answers
2k views

Simple way of turning off observers during rake task?

I'm using restful_authentication in my app. I'm creating a set of default users using a rake task, but every time I run the task an activation email is sent out because of the observer associated ...
4
votes
2answers
110 views

Clojure Model-View-Controller (MVC) design

I am writing a Desktop GUI application in Clojure using Java Swing. Normally when working with Java I will design the application according to a MVC design pattern using the Observer pattern as well. ...
4
votes
1answer
168 views

How to test Mongoid::Observer with rspec

On a simple mongoid data model with a user that has many comments, I want to award the user with a specific badge when he writes at least 1 comment. So I set up an observer like this : class ...
4
votes
3answers
174 views

How to create custom Listeners in java?

I want to know about how to set our own Listeners in java.For example I have a function that increments number from 1 to 100. i want to set a listener when the value reaches 50. How can i do that? Pls ...
4
votes
1answer
280 views

Rx for .NET - What happened to Scheduler.Dispatcher?

I'm trying to work through Dan Sullivan's Rx Extensions training course on PluralSight. It's excellent stuff but unfortunately Rx seems to have already been changed, even though the course was only ...
4
votes
2answers
251 views

How does one include a module with cache expirations in sweepers?

We have the following sweeper in a rails application: class AgencyEquipmentTypeSweeper < ActionController::Caching::Sweeper observe AgencyEquipmentType #include ExpireOptions def ...
4
votes
1answer
348 views

How can Rails observers and callbacks be handled asynchronously (in a different thread)?

Observers and Callbacks on Rails models operate on the same thread and block the request until they return. For example, if I have a Photo model and I queue a resizing job in the after_create ...
4
votes
2answers
902 views

How do I create a Mailer Observer

I'd like to run some code whenever an email is sent on my app. As ActionMailer doesn't support after_filter, I would like to use an observer. The Rails docs mention this in passing, however does not ...
4
votes
1answer
922 views

proper way of extending ActiveRecord::Base

I have extended the ActiveRecord::Base class in the following way: I made a directory under the lib, let's call it now foo wrote the module which provides the extra method has_many_bidirectional to ...
4
votes
3answers
357 views

Renaming implemented methods for Observer pattern in Java

I'm using the Observable class / Observer interface in Java to implement the observer pattern. The Observer interface requires overwriting the update(Observable o, Object arg) method. The problem is ...
4
votes
4answers
1k views

Scala Listener/Observer

Typically, in Java, when I've got an object who's providing some sort of notification to other objects, I'll employ the Listener/Observer pattern. Is there a more Scala-like way to do this? Should I ...
4
votes
3answers
440 views

Asynchronous Observer Pattern

I wanted to find out other ways to do Asynchronous Observer Pattern without using Message Queue. Ideas and examples are mostly welcomed. :-) (Think of this as a brainstorming session). PS Language ...
4
votes
5answers
433 views

Why .NET doesn't have built-in Observer pattern like Java?

I wonder why .NET framework doesn't have pair (Observer/Observable) interfaces similar to Java's feature? EDIT: yes i know about events and delegates but using those interfaces is a simple and ...
4
votes
3answers
212 views

What Design Pattern to use?

The problem to model is this: A hierarchy of levels within an Army, starting with the national army in whole, through field armies, subunits, and eventually the individual men. Each level may involve ...
4
votes
5answers
906 views

Why Observer pattern is much more complicated in C# than in Ruby?

I've read in "Design Patterns in Ruby" by Russ Olsen how Observer pattern can be implemented in Ruby. I've noticed that Ruby implementation of this pattern is much simpler than C# implementation, ...

1 2 3 4 5 9