3
votes
8answers
159 views
Is it OK for a class to be observable and an observer ?
Had a code smell moment and couldn't decided if its OK for a class to be Observable and also an Observer, so thought I'd post here.
class ObservableAndObserver extends Observable …
2
votes
2answers
117 views
Observer Pattern Overload
I'm stuck with the following scenario. It has a code smell, that I'm not happy with, but resolutions to it seems to be as complex, but just in different ways.
I have a scene graph …
2
votes
2answers
34 views
When observe pattern cause GC problems.
In a GC enabled language, when observer subscribes to events of subject, actually subject got a reference of observer.
So before drop an observer, it must un-subscribes first. Ot …
0
votes
2answers
21 views
observer iphone for view controllers
Is there any way to to check the current navigation controller or the view controller currently visible in application delegate method.
I want to create an Observer in applicatio …
0
votes
2answers
77 views
How do I implement observer pattern on PHP + Javascript/jQuery?
Just like in SO, where one is answering a question, if somebody has answered said question, a notification will appear (via AJAX?). My only way of somewhat replicating this is by i …
1
vote
2answers
66 views
using both :url and :function on observe_form
Is there a way to generate both a Javascript function call and an Ajax call in the same observe_form tag? For example, something like this:
<%= observe_form 'user_filter_form' …
0
votes
1answer
54 views
PrototypeJS observe windows dimensions change ?
Hi,
I'm trying to create my own 'modal' window since none of these currently existing for PrototypeJS fits my needs.
The problem is observing document.documentElement for change …
0
votes
0answers
29 views
Event aggregator and collections
Hi, i want to use an event aggregator to syncronize my viewmodel with the view (the viewmodel ovservs the model), this is very simple to implement in the model, simply call notify …
0
votes
0answers
101 views
How do I use the livevalidation javascript library custom.validation function ?
(note: my original question was not linked to my openid - I am reposting here to be able to edit/update/respond accordingly - if anyone with access could remove the original questi …
1
vote
2answers
53 views
Generic Obeserver Pattern for User Controls
Hi there,
I want to implement a generic Observer Pattern for user controls. What is the best way to do this?
There are 3 usercontrols: A, B & C.
Each of these usercontrols …
2
votes
2answers
114 views
Observers vs. Callbacks
Hey,
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 :sen …
2
votes
6answers
272 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 binar …
0
votes
1answer
103 views
Java observer and observable
Can anyone explain why the update method on printobserver is not being called when I click the button on this JFrame?
import java.awt.BorderLayout;
import java.awt.Frame;
import j …
5
votes
5answers
112 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 so …
1
vote
1answer
49 views
Persistence Pattern - Rule based Observer
I'm trying to add functionality to an app where a user can subscribe for changes made either:
To another entity (by any user)
By another user (to any other entity)
A combination …
