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.
1
vote
0answers
35 views
c# How to make an interface NonSerializable?
I would like to serialize an object of type Field. This object implements Observable with following code:
[Serializable]
public class Observable
{
[NonSerialized]
List<IObserver> ...
1
vote
1answer
19 views
What is difference between observer pattern and reactive programming?
Recently I heard a lot the term reactive programming. But when I searched for it, what I discovered was only some similarities with observer pattern. Actually, I cannot find any different between ...
3
votes
2answers
35 views
What is the story of the Observer Design Pattern?
I have been investigating about the observer pattern for an assignment. So far, I have come to the conclusion that it first appeared in a book written by a group of people called "The Gang of Four".
...
1
vote
1answer
29 views
Java: Find out which observer is listening
I am maintaining a software which I have not written. I know only a few parts of it.
Now I have found a method, which fires an event.
public void cleanup(){
if(entity!=null) ...
0
votes
1answer
46 views
Solutions to implement Observer pattern to my application
I want to implement the Observer pattern to my application.Since my code is large i will sum the problem.
So, i have to make a application that manages the relations between a boss and some employees.
...
3
votes
2answers
51 views
Java Observer Pattern finding sender?
observer.update();
Above method makes the visibility of observers "GONE", but i want to change all other observers except sender observer. How can i control this ?
My all actions are observer and ...
1
vote
0answers
102 views
Java; Generic Observer/Observable - is this as messy as I think? [migrated]
I have recently had a whole load of help trying to roll my own loosely-coupled Observable/Observer paradigm, here: Loosely coupled observer pattern
To keep things simple and to aid in my ...
2
votes
1answer
32 views
Observer and JSF MangedBean
I have a drop down menu from which user selects an item(in my case project he is working on), most of the data displayed by a webpage depends on that selection. So I have couple of view scoped beans ...
4
votes
2answers
85 views
Loosely coupled observer pattern
I realise this subject has been covered to death but I am still struggling and could do with some specific help.
My aim is to implement a simple Observer pattern between some kind of observable (lets ...
0
votes
2answers
33 views
Observer pattern - observer creation
I'm learning about design patterns and I have stumbled upon a question I really don't know how to find an answer to. In the observer design pattern class diagrams, I have seen that a Concrete Observer ...
0
votes
0answers
21 views
Block of NSNotificationCenter's addObserverForName:queue:usingBlock: fires before observer is actually added / before the scope that calls it runs
I'm getting some weird behavior with this call:
-(void) someMethod
{
// some code
__block id observer = [[NSNotificationCenter defaultCenter] addObserverForName:A_NOTIFICATION object:self ...
0
votes
1answer
28 views
notify only certain observers c#
I have a class hierarchy something like that:
public class Staff : Person
{
public Staff() {}
public Staff(string id): base(id) {}
public override void Update(object o) { ...
0
votes
2answers
65 views
C# strategy and observer pattern code
Hi I'm trying to create abstract class Person and two child classes Student and Staff. Person class also has an observer that is notified by a Practical class. But Students will be notified only about ...
0
votes
0answers
86 views
Should I Use the Observer Pattern in My WPF Application
Let me first start by saying I've already searched for an answer of a similar question, but found none.
So, I have a small C# application. It has a method that returns a result and this method is ...
2
votes
1answer
38 views
What mechanism in JavaScript causes a change in DOM or CSSStyleDeclaration to trigger a redraw of the page?
I think we just take it for granted that whenever we change the DOM element's property or its CSSStyleDeclation object's property, the page will be redrawn:
http://jsfiddle.net/peqtL/
...
0
votes
2answers
32 views
Downside to multiple instances of NSNotifcationCenter in cocoa touch
I'm looking into implementing the observer design pattern in cocoa touch, and have discovered that Apple has the cool NSNotificationCenter object that seems like it'll do exactly what I'm looking for. ...
1
vote
2answers
48 views
When should I use decorator / observer?
There is these two pattern : observer and decorator. Both enables me to add an action after something was done (or before for the decorator). But their implementation differs. So when should I use a ...
1
vote
1answer
18 views
Get a list of observable properties
i know how to use the command 'properties' to get a list of all properties that an object has.
Is there a way to get a list of only the properties that are observable?
0
votes
0answers
15 views
Synchronizing TestNG tests. Is my approach correct?
I want to make my functional tests to run in parallel. I'm using TestNG for test harness.
All my tests may run on a single resource( say Ubuntu 10.04 )
Some times my tests may perform ...
1
vote
1answer
71 views
ExtJS 4 get every listeners of an observable object
I've an observable object defined as follows:
Ext.define ('MyObject', {
mixins: {
observable: 'Ext.util.Observable'
} ,
constructor: function (cfg) {
this.initConfig (cfg);
...
0
votes
1answer
21 views
Is socket.io's “on” method an adder or setter?
In socket.io, will using "on" twice replace the older registration or will the event fire both listeners? Is it a generally consistent behavior with javascript "on" methods in general? And is there a ...
0
votes
1answer
43 views
JavaScript OOP: Did I miss something on variable scopes and anonymous functions?
I'm getting some weird behavior as I'm trying to implement a little bit of event handling to my JavaScript-game. I'm not a JavaScript expert and I kind of feel like I've missed something essential but ...
0
votes
0answers
25 views
Plugging in design patterns
I am trying to get my head around a couple, well most of the design patterns. I have set up a 'space simulator' which involves a menu for adding/removing/interacting with space items such as asteroids ...
1
vote
1answer
46 views
Continue using subscription after exception
I was trying out a "type-to-search" Reactive-Extensions sample which takes a string from a textbox (WPF app if it matters) and does a potentially-lengthy server-side search (simulated in my case with ...
0
votes
0answers
20 views
Hooks / Execute Method later than real execution point of time
Hello stackoverflow Community,
I am currently trying to realize a hook functionality to my framework. I thought of a static class called hook, that can be called from any other Class I want to.
...
0
votes
2answers
111 views
Java concurrency with arraylists (How to handle this?)
It is true that you get a ConcurrentModificationException error when you try and modify an arraylist when iterating through it, yes? But how does the error still persist if you first remove the ...
2
votes
1answer
132 views
Java - Observer Pattern in regards to some code. Mimic syncronized text update
The purpose of my code is to mimic the functionality of Google Docs - when a user types on one machine, the letters they type appear on another machine. For simplistic purposes, each machine types ...
0
votes
0answers
35 views
Jquery Observer Pattern for Notification System
I have been doing some research for a notification system. In my project, people can post some questions with a category id. Lets say, another user wants to follow that category's all questions. ...
0
votes
0answers
27 views
JsonRest: Nested stores and observing queries
I have an application that uses stores heavily. In my application, I define all of the stores in a module, so that queries to the same store use the same store object. Now that I am adding sub-stores, ...
0
votes
0answers
29 views
Observer for impementing model - view syncronisation
I have problem impementing GUI for the following case:
Assume I have a scrollbar and a 2 edittext(input box) and following code:
public class Model {
private int mData;
// methods for ...
5
votes
3answers
103 views
Is it possible to write a general purpose multiplexer in Java?
I've got a lot of listeners that are registered using setListener methods, rather than addListener. So in order to allow multiple listeners to register to an object, I've got to use multiplexers. ...
0
votes
2answers
52 views
Monitor changes on object property
Say I have an object similar to the following:
Cars = {
"car_one": {
data: {
make: "Ford",
model: "Festiva"
},
img: "car_one.jpg"
},
...
1
vote
1answer
60 views
Right Pattern to use
I want to create a Payment Module, this module is going to have a form where the user can pay a product, after the payment is done I want to save the payment info on several db tables. I want to use ...
1
vote
1answer
37 views
MonoTouch INotifyPropertyChanged without large framework
I have a monotouch application that I want to have some MVVM characteristics using INotifyPropertyChanged.
I do not want to include a MVVM framework like MvvmCross to get this working.
I could ...
2
votes
2answers
74 views
Implement a “static observer pattern”
I have a class with a method template:
struct Subject
{
template <typename T>
void doSomething()
{
..
}
};
Now whenever doSomething is called (with any T) I would like to have an ...
0
votes
0answers
19 views
MySql net Connector observer
I have a little question. I have the MySql net Connector in my c# project and I need an event that is triggered, when something changes in the database or a single table.
The best I think would be ...
1
vote
3answers
84 views
Observer pattern in c++/cli for mixed managed/unmanaged
I have a system comprising a C# UI, a C++/CLI mixed mode interop wrapper, and some native c++ projects.
What I need to do is set up a system such that the native c++ code can send a log message, and ...
0
votes
0answers
40 views
AVPlayer boundary time observer fails to fire occasionally
I'm using AVPlayer's -addBoundaryTimeOserverForTimes:queue:usingBlock: to execute some code at a specific time in my video (in this case, I want a un-hide a button when my video reaches its duration. ...
0
votes
1answer
65 views
Magento Load Product event observer?
The store I am working on has some custom comunity and local modules that handles some custom items in connection with catalog product.
I need an event observer in order to add some additional data ...
0
votes
1answer
72 views
Java observer pattern how to handle lots of events
I'm working on a application that has a client and a server. When the client receives a packet it needs to notify whatever screen object needs what packet (for instance the login screen is only ...
4
votes
2answers
115 views
Observer pattern in Java - Observer observes different, unrelated types or classes? [duplicate]
Does an Observer in the observer pattern always have to observe objects of the same TYPE ? Is it okay if ONE Observer observes different objects of different types of classes which are totally ...
2
votes
1answer
72 views
Trying to observe javascript Object
I'm trying to create an object observer in javascript.
This is as far as i get:
//object to observe an object
observe : {
parent : this, //keep context of parent
...
3
votes
2answers
78 views
How do Announcements relate to the classic Smalltalk-80 dependent/change/update mechanism?
With the Announcements framework available in Pharo Smalltalk, is there still a reason to use the classic Smalltalk-80 dependent/change/update mechanism?
1
vote
1answer
54 views
Add item to GUI jCombo box
I have a Java program with a model and a GUI. On my Frame (that implements Observer) I have put a jcombobox with a list of registration from my model (that extends Observable).
When I click on a ...
0
votes
2answers
48 views
“Local” publish-subscriber pattern for use in MVC wxpython
Using wxpython in MVC, I looked for a way to let the models tell the controllers about changes. I found (py)pubsub, which implements a global notification mechanism: Messages are sent to one place ...
1
vote
1answer
68 views
Java - Combine Observer pattern with timer task?
In a previous post, I used the observer pattern. Description -
class Flight has a status (ie int) - before time, on time, late. This is my Observable
class FlightStatusMonitor has an ArrayList of ...
0
votes
3answers
64 views
All static members in a class that implements java.util.Observer?
I want to make a class R which will observe all instances of class S, that is, I am using the observer-observable pattern. There is no need for having multiple instances of class R, I am sure of that. ...
1
vote
1answer
44 views
Usage of wildcards and typed generics generates “is not applicable for the arguments” error
I'm currently writing a simple Event Listener library.
Here's my interface for any listener:
public interface Listener<T> {
// Event is a very simple type which holds a variable T data.
...
0
votes
2answers
214 views
C# Passing Parameters - Dynamic Event Subscription
I have the below in my controller and would like to pass x, y, and z of type float to subscribers. I'm having some difficulties catching on however. What would I have to adjust to allow me to pass my ...
0
votes
1answer
42 views
rails 3 observe_form no routes match
I'm trying to upgrade rails 2 application to rails 3.
An have a problem with observe_form in my view.
<%= observe_form 'lead', :url => { :action => :update_price }, :frequency => 0.1 %>
I have ...






