I have to do a presentation of the callback pattern. I just want to be sure that I got it right because of what I read about callbacks, callback functions and callback pattern...
The design pattern callback is very similar to the observer pattern.
The first one is easier to implement but will probably mess with an MVC implementation. You have to call specific functions or methods to make the callback. There's no specific class diagramm.
http://soapatterns.org/design_patterns/service_callback
http://searchdaily.net/callback-pattern-with-rmi-client-callback/#more-2009
The second is made for MVC, have a specific class diagramm, etc. (I can look on wikipedia if I need)
So my questions are :
Is what I wrote right ?
Are my 2 links correct (speaking of the pattern callback) ?
Do we agree that callback pattern and function are 2 completely different things ?