/src/java/opentss/TcpConnectionListener.java

http://open-tss.googlecode.com/ · Java · 38 lines · 9 code · 7 blank · 22 comment · 0 complexity · 8151beddfb711d6dfbbd44b84d5f2726 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.util.Properties;
  18. /**
  19. * ?????TCP???????????????<br/>
  20. * ?????????{@link TcpEndpoint}???
  21. *
  22. * @see TcpEndpoint
  23. * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
  24. */
  25. public interface TcpConnectionListener {
  26. enum Status {INITIALIZED, START, STOPPED, UNKNOWN}
  27. void init(Properties props);
  28. void start();
  29. void stop();
  30. Status status();
  31. }