Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
639 views

In an Observer method, how do you tell Magento to not process code after the dispatched event

I have some code in the checkout where I set a key in the session if that key is set to false anywhere in the checkout I need to send them back to the billing page. I have the code for it, but I also ...
3
votes
2answers
591 views

How do you efficiently implement the observer pattern if the subject is a huge container?

We all know the observer pattern: You have a subject which is able to notify and update a list of observers of its state changes. Now suppose that the subject you would like to observe is a container, ...
2
votes
1answer
346 views

Dynamically instantiating an ActiveRecord Observer for multiple models

I'm trying to develop a plugin/gem at the moment which observes multiple models. Ideally, the observer should be instantiated automatically with just one singleton method... class MyModel < ...
2
votes
3answers
165 views

Is this called “Circular Reference”?

Having the Observer pattern, we all know that based on its class diagram, the SUBJECT uses a reference to the OBSERVER. Meanwhile, the OBSERVER has a reference to SUBJECT in order to register or ...
2
votes
3answers
395 views

Monitor database table for external changes from within Rails application

I'm integrating some non-rails-model tables in my Rails application. Everything works out very nicely, the way I set up the model is: class Change < ActiveRecord::Base ...
2
votes
5answers
2k views

Good idea to access session in observer or not?

I want to log user's actions in my Ruby on Rails application. So far, I have a model observer that inserts logs to the database after updates and creates. In order to store which user performed the ...
1
vote
1answer
24 views

Firefox Extension - user-interaction-inactive notification fires only once

I am developing a firefox extension which needs to be notified when the browser is inactive (user-interaction-inactive). I registered an observer for this as given in the code below. My problem is ...
1
vote
2answers
110 views

How do I disable cache sweepers for testing purposes

I'm using a sweeper to watch a model and do some logging with snogmetrics: class UserSweeper < ActionController::Caching::Sweeper observe User def after_create(user) ...
1
vote
1answer
358 views

Magento : How to retrieve option information from a bundled product?

I have a bundled Product that contains 3 virtual products as options. I have an observer that is listening to an event when an item is added to the cart and I'm having a hard time figuring out how to ...
1
vote
5answers
251 views

How pass data to 'generic' observer? As arguments or as a single struct?

I am busy adding a generic observer mechanism to a legacy C++ application (using Visual Studio 2010, but not using .Net, so .Net delegates are out of the question). In the design I want to separate ...
1
vote
3answers
258 views

How to use java.util.Observable from Javascript?

I'm building a Drupal module that integrates the "FileCatalyst" Java FTP applet with a standard Drupal form. I'm implementing a hook to submit the form when a file transfer completes. Currently I'm ...
0
votes
1answer
20 views

I need to access a url_helper method in an observer, how can I do it?

I've got an observer that is being used to generate some activity logs. Those activity logs need to have links to the actual site activities so that when they're displayed it's easy to jump to the ...
0
votes
1answer
61 views

Observers in ASP.Net with Delegates

Well, i'm working in a asp.net 3.5 site. I have set an Observer like this: public delegate void ActionNotification(); protected Dictionary<string, List<ActionNotification>> Observers { ...
0
votes
1answer
102 views

How to setup MongoMapper Observer

I'm trying to create some mongo mapper observer. I found a class exit for that : http://rubydoc.info/gems/danielharan-mongo_mapper/0.6.5/MongoMapper/Observer The question is how to activate them. I ...
0
votes
0answers
17 views

how could I get the which row that have changed by ContentResolver, maybe with observer

I means when I registerContentObserver, I just could get the specific row or specific table change. But, when someone insert or update the table, I could not get which new row insert or old row change ...
0
votes
1answer
105 views

Using an observer pattern on objects that don't know about each other directly

Here are my Observer and Observable interfaces public interface Observable<T> { void addObserver(Observer<T> o); void removeObserver(Observer<T> o); void ...
0
votes
1answer
89 views

How to access old state values within datamapper observer?

I'm using dm-observer to observe my dm models, and I need to perform some actions based on state changes within the model. I've figured out that @state is used to store the updated state value, but I ...
0
votes
1answer
422 views

Rails User model has_many activities (observer) but should also be observed

I'm running into an issue with an existing ActiveRecord::Observer model that records various Activities of a User the site. Everything was working really well, until I tried to observe the User class ...