Package com.opengamma.engine.calcnode.msg

Examples of com.opengamma.engine.calcnode.msg.Cancel


  }

  @Override
  public void cancel(final Collection<CalculationJobSpecification> jobs) {
    s_logger.info("Cancelling {} jobs at {}", jobs.size(), getInvokerId());
    sendMessage(new Cancel(jobs));
  }
View Full Code Here


  }

  @Override
  public void cancel(final CalculationJobSpecification job) {
    s_logger.info("Cancelling {} at {}", job, getInvokerId());
    sendMessage(new Cancel(Collections.singleton(job)));
  }
View Full Code Here

TOP

Related Classes of com.opengamma.engine.calcnode.msg.Cancel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.