Package com.alipay.bluewhale.core.task.common

Examples of com.alipay.bluewhale.core.task.common.TaskShutdownDameon


    return getShutdown(all_threads, heartbeat_thread, puller);
  }

  public TaskShutdownDameon getShutdown(AsyncLoopThread[] all_threads,
      AsyncLoopThread heartbeat_thread, IConnection puller) {
    TaskShutdownDameon shutdown = new TaskShutdownDameon(active, topologyid,
        taskid, mqContext, all_threads, zkCluster, puller, taskObj,
        heartbeat_thread);
    return shutdown;
  }
View Full Code Here


    List<TaskShutdownDameon> shutdowntasks = new ArrayList<TaskShutdownDameon>();
    // ����task
    if (taskids != null) {
      for (int taskid : taskids) {

        TaskShutdownDameon t = Task.mk_task(conf, stormConf,
            systemContext.make(taskid), userContext.make(taskid),
            topologyId, mqContext, zkClusterstate, zkActive,
            workerTransfer, workHalt);

        shutdowntasks.add(t);
View Full Code Here

TOP

Related Classes of com.alipay.bluewhale.core.task.common.TaskShutdownDameon

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.