Package clojure.lang

Examples of clojure.lang.Atom


  private WorkerData workerData;
  private String componentType; //"spout" or "bolt"

  @SuppressWarnings("rawtypes")
  public Task(WorkerData workerData, int taskId) throws Exception {
    openOrPrepareWasCalled = new Atom(Boolean.valueOf(false));

    this.workerData = workerData;
    this.topologyContext = workerData.getContextMaker()
        .makeTopologyContext(workerData.getSysTopology(), taskId,
            openOrPrepareWasCalled);
View Full Code Here

TOP

Related Classes of clojure.lang.Atom

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.