1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.net.core; 5 6 /** 7 * The common interface for TCComm instances. A TCComm instance is used for managing the lowest level network details 8 * (ie. reading/writing bytes, and opening/closing connections) 9 * 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 }