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


Java AbstractCloudSlave类代码示例

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


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

示例1: check

import hudson.slaves.AbstractCloudSlave; //导入依赖的package包/类
/**
 * While x-stream serialisation buggy, copy implementation.
 */
@Override
@GuardedBy("hudson.model.Queue.lock")
public long check(final AbstractCloudComputer c) {
    final AbstractCloudSlave computerNode = c.getNode();
    if (c.isIdle() && computerNode != null) {
        final long idleMilliseconds = System.currentTimeMillis() - c.getIdleStartMilliseconds();
        if (idleMilliseconds > MINUTES.toMillis(idleMinutes)) {
            LOG.info("Disconnecting {}, after {} min timeout.", c.getName(), idleMinutes);
            try {
                computerNode.terminate();
            } catch (InterruptedException | IOException e) {
                LOG.warn("Failed to terminate {}", c.getName(), e);
            }
        }
    }
    return 1;
}
 
开发者ID:KostyaSha,项目名称:yet-another-docker-plugin,代码行数:21,代码来源:DockerCloudRetentionStrategy.java

示例2: done

import hudson.slaves.AbstractCloudSlave; //导入依赖的package包/类
protected void done(final AbstractCloudComputer<?> c) {
    c.setAcceptingTasks(false); // just in case
    synchronized (this) {
        if (terminating) {
            return;
        }
        terminating = true;
    }

    final Future<?> submit = Computer.threadPoolForRemoting.submit(() -> {
            try {
                AbstractCloudSlave node = c.getNode();
                if (node != null) {
                    node.terminate();
                }
            } catch (InterruptedException | IOException e) {
                LOG.warn("Failed to terminate " + c.getName(), e);
                synchronized (DockerOnceRetentionStrategy.this) {
                    terminating = false;
                }
            }
        }
    );
}
 
开发者ID:KostyaSha,项目名称:yet-another-docker-plugin,代码行数:25,代码来源:DockerOnceRetentionStrategy.java


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