/interpreter/tags/reactive-pattern-matching/src/edu/vub/at/actors/ATObservable.java

http://ambienttalk.googlecode.com/ · Java · 66 lines · 11 code · 5 blank · 50 comment · 0 complexity · 541141fa1aef71c47b794ab4e6f5ef73 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * ATObservable.java
  4. * (c) Programming Technology Lab, 2006 - 2007
  5. * Authors: Tom Van Cutsem & Stijn Mostinckx
  6. *
  7. * Permission is hereby granted, free of charge, to any person
  8. * obtaining a copy of this software and associated documentation
  9. * files (the "Software"), to deal in the Software without
  10. * restriction, including without limitation the rights to use,
  11. * copy, modify, merge, publish, distribute, sublicense, and/or
  12. * sell copies of the Software, and to permit persons to whom the
  13. * Software is furnished to do so, subject to the following
  14. * conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be
  17. * included in all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  21. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  23. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  24. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  25. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. package edu.vub.at.actors;
  29. import edu.vub.at.exceptions.InterpreterException;
  30. import edu.vub.at.objects.ATClosure;
  31. import edu.vub.at.objects.ATNil;
  32. import edu.vub.at.objects.ATObject;
  33. import edu.vub.at.objects.grammar.ATSymbol;
  34. import edu.vub.at.objects.natives.NATTable;
  35. /**
  36. * ATObservable is the common interface used to create callbacks.
  37. *
  38. * @author smostinc
  39. * @deprecated
  40. */
  41. public interface ATObservable extends ATObject {
  42. /**
  43. * Installs an observer on this object
  44. * @param event a symbol denoting a potentially interesting event
  45. * @param observer a closure to be triggered when the event is fired
  46. * @return a closure which can be applied to cancel the observer's subscription
  47. */
  48. public abstract ATClosure base_upon_do_(ATSymbol event, ATClosure observer);
  49. /**
  50. * Fires an event with the given arguments. All the provided closures are applied
  51. * ASYNCHRONOUSLY. This implies that exceptions thrown by such a closure will not
  52. * prevent other observers from getting triggered. Moreover, observers are then
  53. * triggered breadth-first as opposed to depth-first as is the case with synchronous
  54. * invocations.
  55. *
  56. * @param event - the event being fired
  57. * @param arguments - a possibly empty table of arguments to the event
  58. * @return nil
  59. */
  60. public abstract ATNil base_fire_withArgs_(ATSymbol event, NATTable arguments) throws InterpreterException;
  61. }