Interface SessionCorrelation<B extends SessionCorrelation<B>>

    • Method Detail

      • setSessionCorrelation

        void setSessionCorrelation​(boolean hasSessionCorrelation)
        Enables or disables the automatic Session-Correlation mechanism.
        Parameters:
        hasSessionCorrelation - When true then Session-Correlation is enabled, else disabled.
      • withSessionCorrelation

        B withSessionCorrelation​(boolean hasSessionCorrelation)
        Builder method for the setSessionCorrelation(boolean) operation.
        Parameters:
        hasSessionCorrelation - When true then Session-Correlation is enabled, else disabled.
        Returns:
        The builder for applying multiple build operations.
      • enableSessionCorrelation

        default void enableSessionCorrelation()
        Enables the automatic Session-Correlation mechanism.
      • withEnableSessionCorrelation

        B withEnableSessionCorrelation()
        Builder method for the enableSessionCorrelation() operation.
        Returns:
        The builder for applying multiple build operations.
      • disableSessionCorrelation

        default void disableSessionCorrelation()
        Disables the automatic Session-Correlation mechanism.
      • withDisableSessionCorrelation

        B withDisableSessionCorrelation()
        Builder method for the disableSessionCorrelation() operation.
        Returns:
        The builder for applying multiple build operations.
      • hasSessionCorrelation

        boolean hasSessionCorrelation()
        Determines whether Session-Correlation is being enabled or disabled.
        Returns:
        True in case Session-Correlation is being enabled, else false.