/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
- /**
- * Copyright 2002-2006 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package opentss;
-
- import java.io.IOException;
- import java.net.InetAddress;
-
- /**
- * TCP??
- *
- * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
- */
- public interface TcpConnection {
-
- Reader getReader() throws IOException;
-
- Writer getWriter() throws IOException;
-
- void flush() throws IOException;
-
- void close();
-
- /**
- * @see java.net.Socket#getInetAddress()
- */
- InetAddress getInetAddress();
-
- /**
- * @see java.net.Socket#getLocalAddress()
- */
- InetAddress getLocalAddress();
-
- /**
- * @see java.net.Socket#getPort()
- */
- int getPort();
-
- /**
- * @see java.net.Socket#getLocalPort()
- */
- int getLocalPort();
- }