Uses of Interface
org.directwebremoting.ScriptSessionFilter

Packages that use ScriptSessionFilter
org.directwebremoting This package contains all the classes that are interesting to DWR users going about normal DWR business. 
org.directwebremoting.extend This 'extend' package contains many of the classes that are interesting to very advanced DWR users, and people embedding or extending DWR. 
org.directwebremoting.impl   
 

Uses of ScriptSessionFilter in org.directwebremoting
 

Methods in org.directwebremoting with parameters of type ScriptSessionFilter
static void Browser.withAllSessionsFiltered(ScriptSessionFilter filter, java.lang.Runnable task)
          Execute a task an send the output to a subset of the total list of users.
static void Browser.withAllSessionsFiltered(ServerContext serverContext, ScriptSessionFilter filter, java.lang.Runnable task)
          As Browser.withAllSessionsFiltered(ScriptSessionFilter, Runnable), but for use when there is more than one copy of DWR in the ServletContext.
static void Browser.withCurrentPageFiltered(ScriptSessionFilter filter, java.lang.Runnable task)
          Execute a task and aim the output at a subset of the browser windows open at the same page as the current request.
static void Browser.withPageFiltered(ServerContext serverContext, java.lang.String page, ScriptSessionFilter filter, java.lang.Runnable task)
          As Browser.withPageFiltered(java.lang.String, org.directwebremoting.ScriptSessionFilter, java.lang.Runnable), but for use when there is more than one copy of DWR in a ServletContext.
static void Browser.withPageFiltered(java.lang.String page, ScriptSessionFilter filter, java.lang.Runnable task)
          Execute a task and aim the output at a subset of the users on a page.
 

Uses of ScriptSessionFilter in org.directwebremoting.extend
 

Classes in org.directwebremoting.extend that implement ScriptSessionFilter
 class AllScriptSessionFilter
          A ScriptSessionFilter that passes everything.
 class AndScriptSessionFilter
          A ScriptSessionFilter that only allows ScriptSessions that match pass both the given ScriptSessionFilters
 class IdScriptSessionFilter
          A ScriptSessionFilter that only allows ScriptSessions that match the given session id.
 class PageScriptSessionFilter
          A ScriptSessionFilter that only allows ScriptSessions that match the given page.
 

Methods in org.directwebremoting.extend with parameters of type ScriptSessionFilter
 void TaskDispatcher.dispatchTask(ScriptSessionFilter filter, java.lang.Runnable task)
          Take a runnable action and run it against every ScriptSession that matches a specified filter.
 

Constructors in org.directwebremoting.extend with parameters of type ScriptSessionFilter
AndScriptSessionFilter(ScriptSessionFilter left, ScriptSessionFilter right)
           
 

Uses of ScriptSessionFilter in org.directwebremoting.impl
 

Methods in org.directwebremoting.impl with parameters of type ScriptSessionFilter
 void DefaultTaskDispatcher.dispatchTask(ScriptSessionFilter filter, java.lang.Runnable task)
           
 


Copyright ยจ 2008