Java Doc for TCPEndpoint.java in  » 6.0-JDK-Modules-sun » rmi » sun » rmi » transport » tcp » 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 » 6.0 JDK Modules sun » rmi » sun.rmi.transport.tcp 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   sun.rmi.transport.tcp.TCPEndpoint

TCPEndpoint
public class TCPEndpoint implements Endpoint(Code)
TCPEndpoint represents some communication endpoint for an address space (VM).
author:
   Ann Wollrath



Constructor Summary
public  TCPEndpoint(String host, int port)
     Create an endpoint for a specified host and port.
public  TCPEndpoint(String host, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
     Create a custom socket factory endpoint for a specified host and port.

Method Summary
public  booleanequals(Object obj)
    
public  voidexportObject(Target target)
     Export the object to accept incoming calls.
public  ChannelgetChannel()
     Returns a channel for this (remote) endpoint.
public  RMIClientSocketFactorygetClientSocketFactory()
     Get the client socket factory associated with this endpoint.
public  StringgetHost()
    
public  TransportgetInboundTransport()
     Returns the transport for incoming connections to this endpoint, if this endpoint was created as a server endpoint (using getLocalEndpoint).
public  intgetListenPort()
     Returns the port that this endpoint's inbound transport listens on, if this endpoint was created as a server endpoint (using getLocalEndpoint).
public static  TCPEndpointgetLocalEndpoint(int port)
     Get an endpoint for the local address space on specified port.
public static  TCPEndpointgetLocalEndpoint(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
    
public  TransportgetOutboundTransport()
     Returns transport for making connections to remote endpoints; (here, the default transport at port 0 is used).
public  intgetPort()
     Returns the port for this endpoint.
public  RMIServerSocketFactorygetServerSocketFactory()
     Get the server socket factory associated with this endpoint.
public  inthashCode()
    
 ServerSocketnewServerSocket()
     Return new server socket to listen for connections on this endpoint.
 SocketnewSocket()
     Open and return new client socket connection to endpoint.
public static  TCPEndpointread(ObjectInput in)
     Get the endpoint from the input stream.
public static  TCPEndpointreadHostPortFormat(DataInput in)
     Create a new endpoint from input stream data.
static  voidsetDefaultPort(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
     Set the port of the (shared) default endpoint object.
static  voidsetLocalHost(String host)
     Set the local host name, if currently unknown.
public static  voidshedConnectionCaches()
     Release idle outbound connections to reduce demand on I/O resources.
public  StringtoString()
     Return string representation for endpoint.
public  voidwrite(ObjectOutput out)
     Write endpoint to output stream.
public  voidwriteHostPortFormat(DataOutput out)
     Write endpoint to output stream in older format used by UnicastRef for JDK1.1 compatibility.


Constructor Detail
TCPEndpoint
public TCPEndpoint(String host, int port)(Code)
Create an endpoint for a specified host and port. This should not be used by external classes to create endpoints for servers in this VM; use getLocalEndpoint instead.



TCPEndpoint
public TCPEndpoint(String host, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)(Code)
Create a custom socket factory endpoint for a specified host and port. This should not be used by external classes to create endpoints for servers in this VM; use getLocalEndpoint instead.




Method Detail
equals
public boolean equals(Object obj)(Code)



exportObject
public void exportObject(Target target) throws RemoteException(Code)
Export the object to accept incoming calls.



getChannel
public Channel getChannel()(Code)
Returns a channel for this (remote) endpoint.



getClientSocketFactory
public RMIClientSocketFactory getClientSocketFactory()(Code)
Get the client socket factory associated with this endpoint.



getHost
public String getHost()(Code)
Returns address for endpoint



getInboundTransport
public Transport getInboundTransport()(Code)
Returns the transport for incoming connections to this endpoint, if this endpoint was created as a server endpoint (using getLocalEndpoint).



getListenPort
public int getListenPort()(Code)
Returns the port that this endpoint's inbound transport listens on, if this endpoint was created as a server endpoint (using getLocalEndpoint). If this endpoint was created for the default/anonymous port, then this method returns zero even if the transport has started listening.



getLocalEndpoint
public static TCPEndpoint getLocalEndpoint(int port)(Code)
Get an endpoint for the local address space on specified port. If port number is 0, it returns shared default endpoint object whose host name and port may or may not have been determined.



getLocalEndpoint
public static TCPEndpoint getLocalEndpoint(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)(Code)



getOutboundTransport
public Transport getOutboundTransport()(Code)
Returns transport for making connections to remote endpoints; (here, the default transport at port 0 is used).



getPort
public int getPort()(Code)
Returns the port for this endpoint. If this endpoint was created as a server endpoint (using getLocalEndpoint) for a default/anonymous port and its inbound transport has started listening, this method returns (instead of zero) the actual bound port suitable for passing to clients.



getServerSocketFactory
public RMIServerSocketFactory getServerSocketFactory()(Code)
Get the server socket factory associated with this endpoint.



hashCode
public int hashCode()(Code)



newServerSocket
ServerSocket newServerSocket() throws IOException(Code)
Return new server socket to listen for connections on this endpoint.



newSocket
Socket newSocket() throws RemoteException(Code)
Open and return new client socket connection to endpoint.



read
public static TCPEndpoint read(ObjectInput in) throws IOException, ClassNotFoundException(Code)
Get the endpoint from the input stream.
Parameters:
  in - the input stream
exception:
  IOException - If id could not be read (due to stream failure)



readHostPortFormat
public static TCPEndpoint readHostPortFormat(DataInput in) throws IOException(Code)
Create a new endpoint from input stream data.
Parameters:
  in - the input stream



setDefaultPort
static void setDefaultPort(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)(Code)
Set the port of the (shared) default endpoint object. When first created, it contains port 0 because the transport hasn't tried to listen to get assigned a port, or if listening failed, a port hasn't been assigned from the server.



setLocalHost
static void setLocalHost(String host)(Code)
Set the local host name, if currently unknown.



shedConnectionCaches
public static void shedConnectionCaches()(Code)
Release idle outbound connections to reduce demand on I/O resources. All transports are asked to release excess connections.



toString
public String toString()(Code)
Return string representation for endpoint.



write
public void write(ObjectOutput out) throws IOException(Code)
Write endpoint to output stream.



writeHostPortFormat
public void writeHostPortFormat(DataOutput out) throws IOException(Code)
Write endpoint to output stream in older format used by UnicastRef for JDK1.1 compatibility.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.