Package com.alibaba.jstorm.schedule

Examples of com.alibaba.jstorm.schedule.DelayEventRunnable


    int delaySecs = getDelaySeconds(args);
    LOG.info("Delaying event " + newType + " for "
        + delaySecs + " secs for " + topologyid);

    data.getScheduExec().schedule(
        new DelayEventRunnable(data, topologyid, nextAction),
        delaySecs, TimeUnit.SECONDS);

    return new StormStatus(delaySecs, newType);
  }
View Full Code Here

TOP

Related Classes of com.alibaba.jstorm.schedule.DelayEventRunnable

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.