Package eu.stratosphere.nephele.instance

Examples of eu.stratosphere.nephele.instance.InstanceListener


    if (this.instanceListener == null) {
      throw new InstanceException("instanceListener not registered with TestInstanceManager");
    }

    final InstanceListener il = this.instanceListener;

    final Runnable runnable = new Runnable() {

      /**
       * {@inheritDoc}
       */
      @Override
      public void run() {
        il.resourcesAllocated(jobID, allocatedResources);
      }
    };

    new Thread(runnable).start();
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.nephele.instance.InstanceListener

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.