Class MessageTrackerHubConnector


  • public class MessageTrackerHubConnector
    extends GuiHubConnector
    HubConnector implementation which provides facilities for keeping track of incoming and outgoing messages as well as the other GUI features.
    Since:
    26 Nov 2008
    Author:
    Mark Taylor
    • Constructor Detail

      • MessageTrackerHubConnector

        public MessageTrackerHubConnector​(ClientProfile profile)
        Constructs a hub connector with default message tracker GUI expiry times.
        Parameters:
        profile - profile implementation
      • MessageTrackerHubConnector

        public MessageTrackerHubConnector​(ClientProfile profile,
                                          int listRemoveDelay,
                                          int tableRemoveDelay,
                                          int tableMaxRows)
        Constructs a hub connector with specified message tracker GUI expiry times. The delay times are times in milliseconds after message resolution before message representations expire and hence remove themselves from gui components.
        Parameters:
        profile - profile implementation
        listRemoveDelay - expiry delay for summary icons in client list display
        tableRemoveDelay - expiry delay for rows in message table display
        tableMaxRows - maximum number of rows in message table (beyond this limit resolved messages may be removed early)
    • Method Detail

      • getTxListModel

        public javax.swing.ListModel getTxListModel()
        Returns a ListModel representing the pending messages sent using this connector. Elements of the model are Transmission objects.
        Returns:
        transmission list model
      • getRxListModel

        public javax.swing.ListModel getRxListModel()
        Returns a ListModel representing the pending messages received using this connector. Elements of the model are Transmission objects.
        Returns:
        transmission list model
      • getTxListModel

        public javax.swing.ListModel getTxListModel​(Client client)
      • getRxListModel

        public javax.swing.ListModel getRxListModel​(Client client)
      • createMessageBox

        public javax.swing.JComponent createMessageBox​(int iconSize)
        Returns a component which displays messages currently being sent/received by this connector.
        Returns:
        iconSize height of icons in box
      • createMessageBox

        public static javax.swing.JComponent createMessageBox​(int iconSize,
                                                              javax.swing.ListModel rxListModel,
                                                              javax.swing.ListModel txListModel)
        Returns a component which displays messages in receiver and/or sender list models.
        Parameters:
        iconSize - height of icons
        rxListModel - list model containing received Transmission objects
        txListModel - list model containing sent Transmission objects
      • createMonitorPanel

        public javax.swing.JComponent createMonitorPanel()
        Description copied from class: GuiHubConnector
        Returns a new component which displays status for this connector.
        Overrides:
        createMonitorPanel in class GuiHubConnector
        Returns:
        new hub connection monitor component