1 /* 2 @See License.txt@ 3 */ 4 5 package spellcast.game; 6 7 8 /*** 9 * An opaque handler for IPC specific uses. This handler denotes the 10 * physical connection for the IPC system. 11 * 12 * @author Barrie Treloar 13 */ 14 public interface IPCHandle 15 { 16 17 /*** 18 * Indicates whether the IPC system has connected the client yet. 19 * @see IPC.connect 20 */ 21 public boolean isConnected(); 22 } 23