*/
private static void applyView(JChannel[] channels, String member, String ... members) throws Exception {
JChannel ch=findChannel(member, channels);
View view=createView(members, channels);
GMS gms=(GMS)ch.getProtocolStack().findProtocol(GMS.class);
gms.installView(view);
}
private static boolean allChannelsHaveViewOf(JChannel[] channels, int count) {
for(JChannel ch: channels) {