Class BroadcastTransportManager

  • Direct Known Subclasses:
    JMSPublishingTransportManager

    public abstract class BroadcastTransportManager
    extends TransportManager

    Purpose: Base class transport manager for broadcasting RCM protocols: JMS and Oc4jJGroups.

    Description: The class doesn't use DiscoveryManager - instead the class (and it's ancestors) implement createConnections method that creates all the necessary connections. This method is called by RemoteCommendManager during initialization.

    Since:
    OracleAS TopLink 11g (11.1.1)
    Author:
    Andrei Ilitchev
    • Field Detail

      • topicName

        protected String topicName
    • Constructor Detail

      • BroadcastTransportManager

        public BroadcastTransportManager()
    • Method Detail

      • createDiscoveryManager

        public DiscoveryManager createDiscoveryManager()
        ADVANCED: BroadcastTransportManager doesn't use DiscoveryManager - instead RemoteCommandManager calls createConnections method during initialization.
        Overrides:
        createDiscoveryManager in class TransportManager
      • createConnections

        public void createConnections()
        INTERNAL: BroadcastTransportManager doesn't use DiscoveryManager (createDiscoveryManager method returns null) therefore this method called during RCM initialization to create all the necessary connections. BroadcastTransportManager ancestors may need to override this method.
        Overrides:
        createConnections in class TransportManager
      • connectBackToRemote

        public void connectBackToRemote​(RemoteConnection connection)
                                 throws Exception
        INTERNAL: Prepare receiving messages by registering this connection as a listener to the Subscriber. This method is called by the remote command manager when this service should connect back ('handshake') to the service from which this remote connection came.
        Overrides:
        connectBackToRemote in class TransportManager
        Throws:
        Exception
      • getTopicName

        public String getTopicName()
        PUBLIC: Return the topic name that this TransportManager will be connecting to.
      • setTopicName

        public void setTopicName​(String newTopicName)
        PUBLIC: Configure the Topic name for the Topic that this TransportManager will be connecting to. For some subclasses (JMS) this is a required setting and must be set; for other (Oc4jJGroups) it's typically not set.