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

org.fabric3.spi.model.physical.ChannelSide Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package org.fabric3.spi.model.physical;

/**
 * The side of the logical channel a physical channel handles.
 */
public enum ChannelSide {
    /**
     * Handles receiving events from a binding and sending them to consumers.
     */
    CONSUMER,
    /**
     * Handles receiving events from producers and sending them to a binding.
     */
    PRODUCER,

    /**
     * Handles receiving events from a producer and sending them to consumers (no bindings).
     */
    COLLOCATED,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy