/src/java/opentss/TcpConnection.java

http://open-tss.googlecode.com/ · Java · 55 lines · 13 code · 10 blank · 32 comment · 0 complexity · 14f393a1b5c2fa8541317eb34e520980 MD5 · raw file

  1. /**
  2. * Copyright 2002-2006 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package opentss;
  17. import java.io.IOException;
  18. import java.net.InetAddress;
  19. /**
  20. * TCP??
  21. *
  22. * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
  23. */
  24. public interface TcpConnection {
  25. Reader getReader() throws IOException;
  26. Writer getWriter() throws IOException;
  27. void flush() throws IOException;
  28. void close();
  29. /**
  30. * @see java.net.Socket#getInetAddress()
  31. */
  32. InetAddress getInetAddress();
  33. /**
  34. * @see java.net.Socket#getLocalAddress()
  35. */
  36. InetAddress getLocalAddress();
  37. /**
  38. * @see java.net.Socket#getPort()
  39. */
  40. int getPort();
  41. /**
  42. * @see java.net.Socket#getLocalPort()
  43. */
  44. int getLocalPort();
  45. }