1 package org.jgroups.jmx; 2 3 import org.jgroups.Channel; 4 5 9 public interface JChannelFactoryMBean { 10 String getMultiplexerConfig(); 11 void setMultiplexerConfig(String properties) throws Exception ; 12 13 String getDomain(); 14 void setDomain(String name); 15 16 boolean isExposeChannels(); 17 void setExposeChannels(boolean flag); 18 19 boolean isExposeProtocols(); 20 void setExposeProtocols(boolean f); 21 22 Channel createMultiplexerChannel(String stack_name, String id) throws Exception ; 23 Channel createMultiplexerChannel(String stack_name, String id, boolean register_for_state_transfer, String substate_id) throws Exception ; 24 void create() throws Exception ; 25 void start() throws Exception ; 26 void stop(); 27 void destroy(); 28 String dumpConfiguration(); 29 String dumpChannels(); 30 } 31 | Popular Tags |