Package org.rioproject.monitor.service.tasks

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


     * 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

Related Classes of org.rioproject.monitor.service.tasks.PeerNotificationTask

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.