Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. /**
  2. * This class implements client sockets (also called just
  3. * "sockets"). A socket is an endpoint for communication
  4. * between two machines.
  5. * <p>
  6. * The actual work of the socket is performed by an instance of the
  7. * {@code SocketImpl} class. An application, by changing
  8. * the socket factory that creates the socket implementation,
  9. * can configure itself to create sockets appropriate to the local
  10. * firewall.
  11. *
  12. * @author unascribed
  13. * @see java.net.Socket#setSocketImplFactory(java.net.SocketImplFactory)
  14. * @see java.net.SocketImpl
  15. * @see java.nio.channels.SocketChannel
  16. * @since JDK1.0
  17. */
  18. public
  19. class Socket implements java.io.Closeable
  20.  
  21. * @author Mark Reinhold
  22. * @author JSR-51 Expert Group
  23. * @since 1.4
  24.  
  25. * @author Arthur van Hoff
  26. * @see java.net.Socket
  27. * @see java.net.ServerSocket
  28. * @since JDK1.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement