seda.sandStorm.lib.aSocket

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 
seda.sandStorm.lib.aSocket
Java Source File NameTypeComment
aSocketConst.javaInterface Internal constants used by the aSocket implementation.
aSocketErrorEvent.javaClass This is the base class for all error events passed up by the aSocket library.
aSocketEventHandler.javaClass Abstract superclass of the event handlers used by aSocket.
aSocketImplFactory.javaClass aSocketImplFactory is an internal abstract class used to represent the interface between the aSocket library and a provider implementation.
aSocketInputStream.javaClass This is a utility class that allows you to push multiple ATcpInPackets in, and read bytes out as a stream.
aSocketMgr.javaClass The aSocketMgr is an internal class used to provide an interface between the Sandstorm runtime and the aSocket library.
aSocketRCTMSleep.javaClass aSocketRCTMSleep is a version of aSocketThreadManager that incorporates a rate controller: given a target packet-processing rate, it adjusts its schedule to attempt to match that rate.
aSocketRequest.javaClass This is the superclass for the various requests that can be issued to the aSocketMgr.
aSocketStageWrapper.javaClass Internal stage wrapper implementation for aSocket.
aSocketThreadManager.javaClass aSocketThreadManager provides a thread manager for the aSocket layer: one thread for each of the read, write, and listen stages.
ATcpClientSocket.javaClass An ATcpClientSocket implements an asynchronous outgoing socket connection. Applications create an ATcpClientSocket and associate a SinkIF with it. When the connection is established an ATcpConnection object will be pushed to the given SinkIF.
ATcpCloseRequest.javaClass Request to close a connection.
ATcpCloseServerRequest.javaClass Request to close a server socket.
ATcpConnectFailedEvent.javaClass ATcpConnectFailedEvent objects will be passed to the SinkIF associated with an ATcpClientSocket when a connection attempt fails.
ATcpConnection.javaClass An ATcpConnection represents an established connection on an asynchronous socket.
ATcpConnectRequest.javaClass Request to establish a connection.
ATcpFlushRequest.javaClass Request to flush a connection.
ATcpInPacket.javaClass An ATcpInPacket represents a packet which was received from an asynchronous socket.
ATcpListenFailedEvent.javaClass ATcpListenFailedEvent objects will be passed to the SinkIF associated with an ATcpServerSocket when an attempt to create that server socket fails.
ATcpListenRequest.javaClass Request to listen on a TCP port.
ATcpListenSuccessEvent.javaClass ATcpListenSuccessEvent objects will be passed to the SinkIF associated with an ATcpServerSocket when the socket successfully listens on the requested port.
ATcpResumeAcceptRequest.javaClass Request to resume accepting new connections on a server socket.
ATcpServerSocket.javaClass This class represents an asynchronous server socket. An application creates an ATcpServerSocket to listen for incoming TCP connections on a given port; when a connection is received, an ATcpConnection object is pushed to the SinkIF associated with the ATcpServerSocket.
ATcpServerSocketClosedEvent.javaClass ATcpServerSocketClosedEvent objects will be passed up to the SinkIF associated with an ATcpServerSocket when a server socket dies.
ATcpStartReadRequest.javaClass Request to initiate read events on a connection.
ATcpSuspendAcceptRequest.javaClass Request to suspend accepting new connections on a server socket.
ATcpWriteRequest.javaClass Request to write data to a connection.
AUdpCloseRequest.javaClass Request to close a UDP socket.
AUdpConnectEvent.javaClass AUdpConnectEvent objects will be passed to the SinkIF associated with an AUdpSocket when the socket successfully connects.
AUdpConnectRequest.javaClass Request to connect a UDP socket.
AUdpDisconnectEvent.javaClass AUdpDisconnectEvent objects will be passed to the SinkIF associated with an AUdpSocket when the socket successfully disconnects.
AUdpDisconnectRequest.javaClass Request to disconnect a UDP socket.
AUdpFlushRequest.javaClass Request to flush a connection.
AUdpInPacket.javaClass An AUdpInPacket represents a packet which was received from a datagram socket.
AUdpPacket.javaClass An AUdpPacket is an extension to BufferElement that supports specifying the destination address and port for a given packet.
AUdpSocket.javaClass An AUdpSocket implements an asynchronous datagram socket.
AUdpStartReadRequest.javaClass Request to initiate read events on a UDP socket.
AUdpWriteRequest.javaClass Request to write data to a connection.
ConnectSockState.javaClass Internal class used to represent state of a socket while an outgoing connection is pending.
DatagramSockState.javaClass Internal class used to represent state of an active datagram socket.
ListenEventHandler.javaClass Internal event handler for socket listen events.
ListenSockState.javaClass Internal class used to represent a server socket listening on a given port.
ReadEventHandler.javaClass Internal event handler used to process socket read events.
SelectQueueElement.javaClass A SelectQueueElement is a wrapper for SelectItem which makes it a QueueElementIF.
SelectSourceIF.javaInterface A SelectSource is an implementation of SourceIF which pulls events from the operating system via the NBIO SelectSet interface.
SockState.javaClass Internal class used to represent state of an active socket connection.
WriteEventHandler.javaClass Internal event handler used to handle socket write events.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.