1 16 package org.directwebremoting.extend; 17 18 import java.io.IOException ; 19 20 import org.directwebremoting.ScriptSession; 21 22 28 public interface RealScriptSession extends ScriptSession 29 { 30 41 void addScriptConduit(ScriptConduit conduit) throws IOException ; 42 43 48 void removeScriptConduit(ScriptConduit conduit); 49 50 56 void writeScripts(ScriptConduit conduit) throws IOException ; 57 58 62 boolean hasWaitingScripts(); 63 64 71 Object getScriptLock(); 72 } 73 | Popular Tags |