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


Java GramJob.addListener方法代码示例

本文整理汇总了Java中org.globus.gram.GramJob.addListener方法的典型用法代码示例。如果您正苦于以下问题:Java GramJob.addListener方法的具体用法?Java GramJob.addListener怎么用?Java GramJob.addListener使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.globus.gram.GramJob的用法示例。


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

示例1: testBadExecutable

import org.globus.gram.GramJob; //导入方法依赖的package包/类
public void testBadExecutable() throws Exception {
GramJob job = new GramJob("&(executable=/bin/thisexecdoesnotexist)");

FailedStatusListener listener = new FailedStatusListener();
job.addListener(listener);

try {
    job.request(util.get("job.long.contact"));
} catch (GramException e) {
    if (e.getErrorCode() != GramException.EXECUTABLE_NOT_FOUND) {
	e.printStackTrace();
	fail("Unexpected error returned: " + e.getMessage());
    }
    logger.debug("Error returned on request()");
    return;
}

if (!listener.waitFor(TIMEOUT)) {
    fail("Did not get FAILED notification");
}

if (job.getError() != GramException.EXECUTABLE_NOT_FOUND) {
    fail("Unexpected error returned: " + job.getError());
}
   }
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:26,代码来源:GramTest.java

示例2: multiRunSub

import org.globus.gram.GramJob; //导入方法依赖的package包/类
private void multiRunSub(String rsl, String rmc, MultiJobListener listener)
        throws InvalidSecurityContextException, TaskSubmissionException {
    GramJob job = new GramJob(rsl);

    job.addListener(listener);

    try {
        job.setCredentials(this.credential);
    }
    catch (IllegalArgumentException iae) {
        throw new InvalidSecurityContextException(
            "Cannot set the SecurityContext twice", iae);
    }

    boolean limitedDeleg = isLimitedDelegation(this.securityContext);
    try {
        job.request(rmc, false, limitedDeleg);
        if (logger.isDebugEnabled()) {
            logger.debug("Submitted job with Globus ID: "
                    + job.getIDAsString());
        }
    }
    catch (GramException ge) {
        listener.failed(true);
        throw new TaskSubmissionException("Cannot submit job", ge);
    }
    catch (GSSException gsse) {
        listener.failed(true);
        throw new InvalidSecurityContextException("Invalid GSSCredentials",
            gsse);
    }
    listener.runningJob();
}
 
开发者ID:swift-lang,项目名称:swift-k,代码行数:34,代码来源:JobSubmissionTaskHandler.java

示例3: testBind

import org.globus.gram.GramJob; //导入方法依赖的package包/类
public void testBind() throws Exception {

GramJob job = new
    GramJob(util.get("job.long"));

logger.debug("submitting job in batch mode...");
job.request(util.get("job.long.contact"), true);
logger.debug("job submitted: " + job.getIDAsString());

DoneStatusListener listener = new DoneStatusListener();

job.addListener(listener);

job.bind();

if (!listener.waitFor(TIMEOUT)) {
    fail("Did not get DONE notification");
}
   }
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:20,代码来源:GramTest.java

示例4: testCancel

import org.globus.gram.GramJob; //导入方法依赖的package包/类
public void testCancel() throws Exception {

GramJob job = new
    GramJob(util.get("job.long"));

FailedStatusListener listener = new FailedStatusListener();

job.addListener(listener);

logger.debug("submitting job in interactive mode...");
job.request(util.get("job.long.contact"));
logger.debug("job submitted: " + job.getIDAsString());

Thread.sleep(5000);

job.cancel();

if (!listener.waitFor(TIMEOUT)) {
    fail("Did not get FAILED notification");
}
   }
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:22,代码来源:GramTest.java

示例5: testUnbind

import org.globus.gram.GramJob; //导入方法依赖的package包/类
public void testUnbind() throws Exception {

GramJob job = new
    GramJob(util.get("job.long"));

ActiveStatusListener listener = new ActiveStatusListener();

job.addListener(listener);

logger.debug("submitting job in interactive mode...");
job.request(util.get("job.long.contact"));
logger.debug("job submitted: " + job.getIDAsString());

if (!listener.waitFor(TIMEOUT)) {
    fail("Did not get ACTIVE notification");
}

job.unbind();
listener.reset();

Thread.sleep(2000);

job.cancel();

if (listener.getNotified()) {
    fail("Unconnected listener received unexpected notification.");
}
   }
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:29,代码来源:GramTest.java


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