root/trunk/as2/com/jeroenwijering/feeds/FeedListener.as @ 1

Revision 1, 311 bytes (checked in by jeroen, 18 months ago)

initial commit of old repository into public one

  • Property svn:executable set to *
Line 
1/**
2* Interface for all objects that need real-time feed updates.
3*
4* @author       Jeroen Wijering
5* @version      1.0
6**/
7
8
9import com.jeroenwijering.feeds.*;
10
11
12interface com.jeroenwijering.feeds.FeedListener {
13
14
15        /** invoked when the feed object has updated **/
16        function onFeedUpdate(typ:String);
17
18
19}
Note: See TracBrowser for help on using the browser.