Source Code Cross Referenced for SelectSourceIF.java in  » Web-Server » Rimfaxe-Web-Server » seda » sandStorm » lib » aSocket » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Server » Rimfaxe Web Server » seda.sandStorm.lib.aSocket 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* 
002:         * Copyright (c) 2001 by Matt Welsh and The Regents of the University of 
003:         * California. All rights reserved.
004:         *
005:         * Permission to use, copy, modify, and distribute this software and its
006:         * documentation for any purpose, without fee, and without written agreement is
007:         * hereby granted, provided that the above copyright notice and the following
008:         * two paragraphs appear in all copies of this software.
009:         * 
010:         * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
011:         * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
012:         * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
013:         * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
014:         * 
015:         * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
016:         * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
017:         * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
018:         * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
019:         * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
020:         *
021:         * Author: Matt Welsh <mdw@cs.berkeley.edu>
022:         * 
023:         */
024:
025:        package seda.sandStorm.lib.aSocket;
026:
027:        import seda.sandStorm.api.*;
028:
029:        import java.net.*;
030:        import java.io.*;
031:        import java.util.*;
032:
033:        /**
034:         * A SelectSource is an implementation of SourceIF which pulls events from
035:         * the operating system via the NBIO SelectSet interface. This can be thought
036:         * of as a 'shim' which turns a SelectSet into a SourceIF. 
037:         *
038:         * <p>SelectSource can also "balances" the set of events returned on 
039:         * subsequent calls to dequeue, in order to avoid biasing the servicing of
040:         * underlying O/S events to a particular order. This feature can be 
041:         * disabled by creating a SelectSource with the boolean flag 'do_balance'.
042:         *
043:         * @author Matt Welsh 
044:         */
045:        public interface SelectSourceIF extends SourceIF {
046:
047:            /**
048:             * Register a SelectItem with the SelectSource. The SelectItem should 
049:             * generally correspond to a Selectable along with a set of event flags
050:             * that we wish this SelectSource to test for. 
051:             *
052:             * <p>The user is allowed to modify the event flags in the SelectItem 
053:             * directly (say, to cause the SelectSource ignore a given SelectItem for 
054:             * the purposes of future calls to one of the dequeue methods). However,
055:             * modifying the event flags may not be synchronous with calls to dequeue -
056:             * generally because SelectSource maintains a cache of recently-received
057:             * events.
058:             *
059:             * @see seda.nbio.Selectable
060:             */
061:            // SelectItem sel
062:            public void register(Object sel);
063:
064:            // SelectableChannel sc
065:            public Object register(Object sc, int ops);
066:
067:            /**
068:             * Deregister a SelectItem with this SelectSource.
069:             * Note that after calling deregister, subsequent calls to dequeue
070:             * may in fact return this SelectItem as a result. This is because
071:             * the SelectQueue internally caches results.
072:             */
073:            public void deregister(Object sel);
074:
075:            /**
076:             * Must be called if the 'events' mask of any SelectItem registered
077:             * with this SelectSource changes. Pushes event mask changes down to
078:             * the underlying event-dispatch mechanism.
079:             */
080:            public void update();
081:
082:            /**
083:             * Must be called if the 'events' mask of this SelectItem (which
084:             * must be registered with this SelectSource) changes. Pushes 
085:             * event mask changes down to the underlying event-dispatch mechanism.
086:             */
087:            public void update(Object sel);
088:
089:            /**
090:             * Return the number of SelectItems registered with the SelectSource.
091:             */
092:            public int numRegistered();
093:
094:            /**
095:             * Return the number of active SelectItems registered with the SelectSource.
096:             * An active SelectItem is one defined as having a non-zero events
097:             * interest mask.
098:             */
099:            public int numActive();
100:
101:            /**
102:             * Return the number of elements waiting in the queue (that is,
103:             * which don't require a SelectSet poll operation to retrieve).
104:             */
105:            public int size();
106:
107:            /* 
108:
109:            // Actually performs the poll and sets ready[], ready_off, ready_size
110:            private void doPoll(int timeout);
111:
112:            // Balances selarr[] by shuffling the entries - sets ready[]
113:            private void balance(SelectItem selarr[]);
114:
115:            // Initialize the balancer
116:            private void initBalancer();
117:             */
118:
119:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.