001 package com.skype.ipc;
002
003 public interface ConnectionListener
004 {
005 /**
006 * The connection to the runtime has closed. Recovery is
007 * theoretically possible if the runtime can be restarted, the
008 * connection re-initialized, and session logins restored, but more
009 * often this is indicative of a fatal error condition.
010 */
011 public void sidOnDisconnected(String cause);
012 public void sidOnConnected();
013 public void sidOnConnecting();
014 }
015