All Downloads are FREE. Search and download functionalities are using the official Maven repository.

brooklyn.entity.messaging.MessageBroker Maven / Gradle / Ivy

The newest version!
package brooklyn.entity.messaging;

import brooklyn.entity.Entity;
import brooklyn.event.AttributeSensor;
import brooklyn.event.basic.Sensors;

/**
 * Marker interface identifying message brokers.
 */
public interface MessageBroker extends Entity {
    AttributeSensor BROKER_URL = Sensors.newStringSensor("broker.url", "Broker Connection URL");

    /** Setup the URL for external connections to the broker. */
    void setBrokerUrl();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy