view rep/gui/SessionManagerGUI.java @ 471:d2762d669617

sleep command to wait for singleton prevention
author one
date Tue, 12 Oct 2010 10:19:59 +0900
parents 4b87f89b3afd
children
line wrap: on
line source

package rep.gui;

import java.util.LinkedList;

import rep.Session;
import rep.handler.REPNode;

public interface SessionManagerGUI {

	public void update(LinkedList<Session> slist, LinkedList<REPNode> elist);

	void invokeLater(Runnable doRun) ;
}