Examples of PeerNotificationTask


Examples of org.rioproject.monitor.service.tasks.PeerNotificationTask

                    System.arraycopy(provisioners, 0, adjustedProvisioners, 0, provisioners.length);
                adjustedProvisioners[provisioners.length] = primary;
                provisioners = adjustedProvisioners;
            }
            myPeerInfo.setBackupCount(listSize);
            new Thread(new PeerNotificationTask(provisioners, myPeerInfo)).start();
        }
        return (assigned);
    }
View Full Code Here

Examples of org.rioproject.monitor.service.tasks.PeerNotificationTask

     * Notify ProvisionMonitor peers of a change in PeerInfo
     *
     * @param info PeerInfo
     */
    void notifyPeers(final ProvisionMonitor.PeerInfo info) {
        new Thread(new PeerNotificationTask(getProvisionMonitorPeers(),
                                            info)).start();
    }
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.