Examples of FindTaskEvent


Examples of com.alibaba.otter.shared.communication.model.config.FindTaskEvent

    }

    private void initNodeTask() {
        // 从manager下获取一下对应的任务列表
        Node node = configClientService.currentNode();
        FindTaskEvent event = new FindTaskEvent();
        event.setNid(node.getId());
        Object obj = nodeCommmunicationClient.callManager(event);
        if (obj != null) {
            List<Channel> channels = (List<Channel>) obj;
            for (Channel channel : channels) {
                // 排除已经分配过的task
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.