Interface ActiveMQServerBasePlugin
-
- All Known Subinterfaces:
ActiveMQServerAddressPlugin,ActiveMQServerBindingPlugin,ActiveMQServerBridgePlugin,ActiveMQServerConnectionPlugin,ActiveMQServerConsumerPlugin,ActiveMQServerCriticalPlugin,ActiveMQServerFederationPlugin,ActiveMQServerMessagePlugin,ActiveMQServerPlugin,ActiveMQServerQueuePlugin,ActiveMQServerResourcePlugin,ActiveMQServerSessionPlugin,AMQPFederationBrokerPlugin
public interface ActiveMQServerBasePlugin
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidinit(Map<String,String> properties)used to pass configured properties to Plugindefault voidregistered(org.apache.activemq.artemis.core.server.ActiveMQServer server)The plugin has been registered with the serverdefault voidsetInit(Map<String,String> props)default voidunregistered(org.apache.activemq.artemis.core.server.ActiveMQServer server)The plugin has been unregistered with the server
-
-
-
Method Detail
-
init
default void init(Map<String,String> properties)
used to pass configured properties to Plugin- Parameters:
properties-
-
registered
default void registered(org.apache.activemq.artemis.core.server.ActiveMQServer server)
The plugin has been registered with the server- Parameters:
server- The ActiveMQServer the plugin has been registered to
-
unregistered
default void unregistered(org.apache.activemq.artemis.core.server.ActiveMQServer server)
The plugin has been unregistered with the server- Parameters:
server- The ActiveMQServer the plugin has been unregistered to
-
-