Source Code Cross Referenced for Http11NIOProtocol.java in  » EJB-Server-geronimo » plugins » org » apache » geronimo » tomcat » connector » 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 » EJB Server geronimo » plugins » org.apache.geronimo.tomcat.connector 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Licensed to the Apache Software Foundation (ASF) under one
003:         * or more contributor license agreements.  See the NOTICE file
004:         * distributed with this work for additional information
005:         * regarding copyright ownership.  The ASF licenses this file
006:         * to you under the Apache License, Version 2.0 (the
007:         * "License"); you may not use this file except in compliance
008:         * with the License.  You may obtain a copy of the License at
009:         *
010:         *  http://www.apache.org/licenses/LICENSE-2.0
011:         *
012:         * Unless required by applicable law or agreed to in writing,
013:         * software distributed under the License is distributed on an
014:         * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015:         * KIND, either express or implied.  See the License for the
016:         * specific language governing permissions and limitations
017:         * under the License.
018:         */
019:        package org.apache.geronimo.tomcat.connector;
020:
021:        public interface Http11NIOProtocol {
022:
023:            public boolean getUseSendfile();
024:
025:            public void setUseSendfile(boolean useSendfile);
026:
027:            public boolean getUseExecutor();
028:
029:            public void setUseExecutor(boolean useExecutor);
030:
031:            public int getAcceptorThreadCount();
032:
033:            public void setAcceptorThreadCount(int acceptorThreadCount);
034:
035:            public int getAcceptorThreadPriority();
036:
037:            public void setAcceptorThreadPriority(int acceptorThreadPriority);
038:
039:            public int getPollerThreadCount();
040:
041:            public void setPollerThreadCount(int pollerThreadCount);
042:
043:            public int getPollerThreadPriority();
044:
045:            public void setPollerThreadPriority(int pollerThreadPriority);
046:
047:            public int getSelectorTimeout();
048:
049:            public void setSelectorTimeout(int selectorTimeout);
050:
051:            public boolean getUseComet();
052:
053:            public void setUseComet(boolean useComet);
054:
055:            public int getProcessCache();
056:
057:            public void setProcessCache(int processCache);
058:
059:            public boolean getSocket_directBuffer();
060:
061:            public void setSocket_directBuffer(boolean socket_directBuffer);
062:
063:            public int getSocket_rxBufSize();
064:
065:            public void setSocket_rxBufSize(int socket_rxBufSize);
066:
067:            public int getSocket_txBufSize();
068:
069:            public void setSocket_txBufSize(int socket_txBufSize);
070:
071:            public int getSocket_appReadBufSize();
072:
073:            public void setSocket_appReadBufSize(int socket_appReadBufSize);
074:
075:            public int getSocket_appWriteBufSize();
076:
077:            public void setSocket_appWriteBufSize(int socket_appWriteBufSize);
078:
079:            public int getSocket_bufferPool();
080:
081:            public void setSocket_bufferPool(int socket_bufferPool);
082:
083:            public int getSocket_bufferPoolSize();
084:
085:            public void setSocket_bufferPoolSize(int socket_bufferPoolSize);
086:
087:            public int getSocket_processorCache();
088:
089:            public void setSocket_processorCache(int socket_processorCache);
090:
091:            public int getSocket_keyCache();
092:
093:            public void setSocket_keyCache(int socket_keyCache);
094:
095:            public int getSocket_eventCache();
096:
097:            public void setSocket_eventCache(int socket_eventCache);
098:
099:            public boolean getSocket_tcpNoDelay();
100:
101:            public void setSocket_tcpNoDelay(boolean socket_tcpNoDelay);
102:
103:            public boolean getSocket_soKeepAlive();
104:
105:            public void setSocket_soKeepAlive(boolean socket_soKeepAlive);
106:
107:            public boolean getSocket_ooBInline();
108:
109:            public void setSocket_ooBInline(boolean socket_ooBInline);
110:
111:            public boolean getSocket_soReuseAddress();
112:
113:            public void setSocket_soReuseAddress(boolean socket_soReuseAddress);
114:
115:            public boolean getSocket_soLingerOn();
116:
117:            public void setSocket_soLingerOn(boolean socket_soLingerOn);
118:
119:            public int getSocket_soLingerTime();
120:
121:            public void setSocket_soLingerTime(int socket_soLingerTime);
122:
123:            public int getSocket_soTimeout();
124:
125:            public void setSocket_soTimeout(int socket_soTimeout);
126:
127:            public int getSocket_soTrafficClass();
128:
129:            public void setSocket_soTrafficClass(int socket_soTrafficClass);
130:
131:            public int getSocket_performanceConnectionTime();
132:
133:            public void setSocket_performanceConnectionTime(
134:                    int socket_performanceConnectionTime);
135:
136:            public int getSocket_performanceLatency();
137:
138:            public void setSocket_performanceLatency(
139:                    int socket_performanceLatency);
140:
141:            public int getSocket_performanceBandwidth();
142:
143:            public void setSocket_performanceBandwidth(
144:                    int socket_performanceBandwidth);
145:
146:            public int getSelectorPool_maxSelectors();
147:
148:            public void setSelectorPool_maxSelectors(
149:                    int selectorPool_maxSelectors);
150:
151:            public int getSelectorPool_maxSpareSelectors();
152:
153:            public void setSelectorPool_maxSpareSelectors(
154:                    int selectorPool_maxSpareSelectors);
155:
156:            public boolean getCommand_line_options();
157:
158:            public void setCommand_line_options(boolean command_line_options);
159:
160:            public int getOomParachute();
161:
162:            public void setOomParachute(int oomParachute);
163:
164:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.