01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.net.core;
05:
06: /**
07: * The common interface for TCComm instances. A TCComm instance is used for managing the lowest level network details
08: * (ie. reading/writing bytes, and opening/closing connections)
09: *
10: * @author teck
11: */
12: public interface TCComm {
13: public void stop();
14:
15: public void start();
16:
17: public boolean isStarted();
18:
19: public boolean isStopped();
20: }
|