Class DeliveryMode

    • Field Detail

      • CLUSTER_MODE

        public static final DeliveryMode CLUSTER_MODE
        Clustered delivery mode. This mode is adapted to integration into an application server cluster.

        Clusters have a strong requirement for transactional integrity. Since a client application can successively access several nodes during the same transaction, the nodes must deliver the same transactional state.

      • FEDERATION_MODE

        public static final DeliveryMode FEDERATION_MODE
        Federated delivery mode. This mode is adapted to a geographically distributed and/or heterogeneous architecture.

        In a federation, the transactional requirements can be relaxed. Updates of replica nodes are performed asynchronously and using replays.

    • Method Detail

      • getLabel

        public abstract String getLabel​(Locale aLocale)
        Returns the label depending on the specified locale.
      • isCluster

        public abstract boolean isCluster()
        Returns true if in clustered delivery mode, otherwise returns false.
      • isFederation

        public abstract boolean isFederation()
        Returns true if in federated delivery mode, otherwise returns false.