当前位置: 首页>>代码示例>>Java>>正文


Java ServerLoadMonitor类代码示例

本文整理汇总了Java中org.directwebremoting.extend.ServerLoadMonitor的典型用法代码示例。如果您正苦于以下问题:Java ServerLoadMonitor类的具体用法?Java ServerLoadMonitor怎么用?Java ServerLoadMonitor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ServerLoadMonitor类属于org.directwebremoting.extend包,在下文中一共展示了ServerLoadMonitor类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: shutdownServerLoadMonitorsInContainerList

import org.directwebremoting.extend.ServerLoadMonitor; //导入依赖的package包/类
/**
 * Internal use only.
 * <p>If we detect that the server is being shutdown then we want to kill
 * any reverse ajax threads.
 * @param containers The list of containers to look for ServerLoadMonitors in
 * @param title What causes this (for debug purposes)
 */
public static void shutdownServerLoadMonitorsInContainerList(List containers, String title)
{
    if (containers == null || containers.size() == 0)
    {
        log.debug("No containers to shutdown for: " + title);
        return;
    }

    log.debug("Shutting down containers for: " + title);
    for (Iterator it = containers.iterator(); it.hasNext();)
    {
        Container container = (Container) it.next();
        ServerLoadMonitor monitor = (ServerLoadMonitor) container.getBean(ServerLoadMonitor.class.getName());
        monitor.shutdown();
    }
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:24,代码来源:ContainerUtil.java

示例2: ShutdownAlarm

import org.directwebremoting.extend.ServerLoadMonitor; //导入依赖的package包/类
/**
 * Register ourselves with the ServerLoadMonitor so we can raise an
 * Alarm if we get shutdown
 * @param serverLoadMonitor
 */
public ShutdownAlarm(Sleeper sleeper, ServerLoadMonitor serverLoadMonitor)
{
    this.sleeper = sleeper;
    this.serverLoadMonitor = serverLoadMonitor;
    this.serverLoadMonitor.threadWaitStarting(waitController);
}
 
开发者ID:directwebremoting,项目名称:dwr,代码行数:12,代码来源:ShutdownAlarm.java

示例3: setServerLoadMonitor

import org.directwebremoting.extend.ServerLoadMonitor; //导入依赖的package包/类
/**
 * Accessor for the server load monitor
 * @param serverLoadMonitor the new server load monitor
 */
public void setServerLoadMonitor(ServerLoadMonitor serverLoadMonitor)
{
    this.serverLoadMonitor = serverLoadMonitor;
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:9,代码来源:PollHandler.java

示例4: setupDefaults

import org.directwebremoting.extend.ServerLoadMonitor; //导入依赖的package包/类
/**
 * Take a DefaultContainer and setup the default beans
 * @param container The container to configure
 * @param servletConfig The source of init parameters
 * @throws InstantiationException If we can't instantiate a bean
 * @throws IllegalAccessException If we have access problems creating a bean
 */
public static void setupDefaults(DefaultContainer container, ServletConfig servletConfig) throws InstantiationException, IllegalAccessException
{
    container.addParameter(AccessControl.class.getName(), DefaultAccessControl.class.getName());
    container.addParameter(ConverterManager.class.getName(), DefaultConverterManager.class.getName());
    container.addParameter(CreatorManager.class.getName(), DefaultCreatorManager.class.getName());
    container.addParameter(UrlProcessor.class.getName(), UrlProcessor.class.getName());
    container.addParameter(WebContextBuilder.class.getName(), DefaultWebContextBuilder.class.getName());
    container.addParameter(ServerContextBuilder.class.getName(), DefaultServerContextBuilder.class.getName());
    container.addParameter(AjaxFilterManager.class.getName(), DefaultAjaxFilterManager.class.getName());
    container.addParameter(Remoter.class.getName(), DefaultRemoter.class.getName());
    container.addParameter(DebugPageGenerator.class.getName(), DefaultDebugPageGenerator.class.getName());
    container.addParameter(PlainCallMarshaller.class.getName(), PlainCallMarshaller.class.getName());
    container.addParameter(HtmlCallMarshaller.class.getName(), HtmlCallMarshaller.class.getName());
    container.addParameter(PlainPollHandler.class.getName(), PlainPollHandler.class.getName());
    container.addParameter(HtmlPollHandler.class.getName(), HtmlPollHandler.class.getName());
    container.addParameter(ScriptSessionManager.class.getName(), DefaultScriptSessionManager.class.getName());
    container.addParameter(PageNormalizer.class.getName(), DefaultPageNormalizer.class.getName());

    if (servletConfig.getServletContext().getServerInfo().startsWith("jetty-6"))
    {
        container.addParameter(ServerLoadMonitor.class.getName(), ThreadDroppingServerLoadMonitor.class.getName());
    }
    else
    {
        container.addParameter(ServerLoadMonitor.class.getName(), DefaultServerLoadMonitor.class.getName());
    }

    // Mapping handlers to URLs
    createUrlMapping(container, "/index.html", "indexHandlerUrl", IndexHandler.class);
    createUrlMapping(container, "/engine.js", "engineHandlerUrl", EngineHandler.class);
    createUrlMapping(container, "/util.js", "utilHandlerUrl", UtilHandler.class);
    createUrlMapping(container, "/auth.js", "authHandlerUrl", AuthHandler.class);
    createUrlMapping(container, "/webwork/DWRActionUtil.js", "webworkUtilHandlerUrl", WebworkUtilHandler.class);
    createUrlMapping(container, "/about", "aboutHandlerUrl", AboutHandler.class);
    createUrlMapping(container, "/test/", "testHandlerUrl", TestHandler.class);
    createUrlMapping(container, "/interface/", "interfaceHandlerUrl", InterfaceHandler.class);

    // The Poll and Call URLs can not be changed easily because they are
    // referenced from engine.js. Maybe one day this would be a good
    // extension
    createUrlMapping(container, "/call/plaincall/", "plainCallHandlerUrl", PlainCallHandler.class);
    createUrlMapping(container, "/call/plainpoll/", "plainPollHandlerUrl", PlainPollHandler.class);
    createUrlMapping(container, "/call/htmlcall/", "htmlCallHandlerUrl", HtmlCallHandler.class);
    createUrlMapping(container, "/call/htmlpoll/", "htmlPollHandlerUrl", HtmlPollHandler.class);
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:53,代码来源:ContainerUtil.java

示例5: setServerLoadMonitor

import org.directwebremoting.extend.ServerLoadMonitor; //导入依赖的package包/类
/**
 * Are we supporting streaming?
 * @param serverLoadMonitor the serverLoadMonitor to set
 */
public void setServerLoadMonitor(ServerLoadMonitor serverLoadMonitor)
{
    this.serverLoadMonitor = serverLoadMonitor;
}
 
开发者ID:directwebremoting,项目名称:dwr,代码行数:9,代码来源:BaseEngineHandler.java

示例6: getServerLoadMonitorImplementation

import org.directwebremoting.extend.ServerLoadMonitor; //导入依赖的package包/类
public Class<? extends ServerLoadMonitor> getServerLoadMonitorImplementation()
{
    return DefaultServerLoadMonitor.class;
}
 
开发者ID:directwebremoting,项目名称:dwr,代码行数:5,代码来源:Servlet24ContainerAbstraction.java

示例7: shutdown

import org.directwebremoting.extend.ServerLoadMonitor; //导入依赖的package包/类
/**
 * Kill all comet polls.
 * <p>Technically a servlet engine ought to call this only when all the
 * threads are already removed, however at least Tomcat doesn't do this
 * properly (it waits for a while and then calls destroy anyway).
 * <p>It would be good if we could get {@link #destroy()} to call this
 * method however destroy() is only called once all threads are done so it's
 * too late.
 */
public void shutdown()
{
    ServerLoadMonitor monitor = (ServerLoadMonitor) container.getBean(ServerLoadMonitor.class.getName());
    monitor.shutdown();
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:15,代码来源:DwrServlet.java

示例8: shutdown

import org.directwebremoting.extend.ServerLoadMonitor; //导入依赖的package包/类
/**
 * Kill all comet polls.
 * <p>Technically a servlet engine ought to call this only when all the
 * threads are already removed, however at least Tomcat doesn't do this
 * properly (it waits for a while and then calls destroy anyway).
 * <p>It would be good if we could get destroy() to call this
 * method however destroy() is only called once all threads are done so it's
 * too late.
 */
public void shutdown() {
    ServerLoadMonitor monitor = (ServerLoadMonitor) container.getBean(ServerLoadMonitor.class.getName());
    monitor.shutdown();
}
 
开发者ID:florinpatrascu,项目名称:jpublish,代码行数:14,代码来源:DWRProcessor.java


注:本文中的org.directwebremoting.extend.ServerLoadMonitor类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。