1 24 25 package org.objectweb.dream.protocol.utobcast; 26 27 import org.objectweb.dream.protocol.Process; 28 29 33 public interface ProcessMembershipUpdateNotification 34 { 35 36 String ITF_NAME = "process-membership-update-notification"; 37 38 43 void newLeader(Process leader); 44 45 50 void newBackup(Process backup); 51 52 57 void newProcesses(Process [] processes); 58 } | Popular Tags |