TopicSubscriptionParamsBean


Overview  |   Related MBeans  |   Attributes  |   Operations

Overview

These parameters allow the administrator to control the behavior of topic subscriptions, such as the maximum number of messages that can be stored in a subscription.

       
Security rolesThe following roles have read, write, and invoke permission for all non-encrypted attributes and operations in this MBean:
  • Deployer
Fully Qualified Interface NameIf you use the getMBeanInfo operation in MBeanTypeServiceMBean, supply the following value as this MBean's fully qualified interface name:
weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean
Factory Methods No factory methods. Instances of this MBean are created automatically.
Access Points You can access this MBean from the following MBean attributes:


Related MBeans

This section describes attributes that provide access to other MBeans.


    TemplateBean

    Finds the template bean for this destination.

           
    Privileges Read only
    TypeTemplateBean
    Relationship type: Reference.


    Attributes

    This section describes the following attributes:


      MessagesLimitOverride

      The maximum number of messages that can be stored in a topic subscription.

      If a new message arrives on subscriptions that have reached the specified limit, then the first-most available messages on these subscriptions will be deleted to make room for the new message. Subscription messages are immune from this deletion if they're participating in a pending transaction, have already been passed to a consumer and are awaiting acknowledgement, or if they are part of a Unit-of-Work that is still waiting to accumulate all of its messages. Note that if all messages are immune from deletion, then a new message can cause a subscription size to exceed its limit.

      A value of -1 means no limit override.

             
      Privileges Read/Write
      Typelong
      Default Value-1
      Minimum value-1
      Maximum value9223372036854775807


      Operations

      This section describes the following operations:


        isSet

        Return true if the given property has been explicitly set in this bean.

           
        Operation Name"isSet"
        ParametersObject [] {  propertyName }

        where:

        • propertyName is an object of type java.lang.String that specifies:

          property to check

        SignatureString [] { "java.lang.String" }
        Returns boolean
        Exceptions
        • java.lang.IllegalArgumentException
          IllegalArgumentException if propertyName is not a recognized property

        unSet

        Restore the given property to its default value.

           
        Operation Name"unSet"
        ParametersObject [] {  propertyName }

        where:

        • propertyName is an object of type java.lang.String that specifies:

          property to restore

        SignatureString [] { "java.lang.String" }
        Returns void
        Exceptions
        • java.lang.IllegalArgumentException
          UnsupportedOperationException if called on a runtime implementation.