Package com.alibaba.jstorm.daemon.worker.hearbeat

Examples of com.alibaba.jstorm.daemon.worker.hearbeat.WorkerHeartbeatRunable


    TaskHeartbeatRunable taskHB = new TaskHeartbeatRunable(workerData);
    AsyncLoopThread taskHBThread = new AsyncLoopThread(taskHB);
    threads.add(taskHBThread);

    // refresh hearbeat to Local dir
    RunnableCallback heartbeat_fn = new WorkerHeartbeatRunable(workerData);
    AsyncLoopThread hb = new AsyncLoopThread(heartbeat_fn, false, null,
        Thread.NORM_PRIORITY, true);
    threads.add(hb);

    // shutdown task callbacks
View Full Code Here

TOP

Related Classes of com.alibaba.jstorm.daemon.worker.hearbeat.WorkerHeartbeatRunable

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.