Interface ConnStateChangeListener

All Known Implementing Classes:
ConnectionModel

public interface ConnStateChangeListener
This listener interface allows classes outside the org.ka2ddo.ax25 hierarchy to be informed when connected sessions are updated.
Author:
Andrew Pavlin, KA2DDO
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Report that the row containing the specified pair of callsigns has been updated.
    void
    Report that a ConnState session has been added or removed from the AX25Stack, but we don't know which row number it is.
  • Method Details

    • updateConnStateRow

      void updateConnStateRow(AX25Callsign sender, AX25Callsign dest)
      Report that the row containing the specified pair of callsigns has been updated. This is expected to be called from a thread other than the AWT dispatch thread.
      Parameters:
      sender - AX25Callsign of originator of session
      dest - AX25Callsign of recipient of session
    • updateWholeConStateTable

      void updateWholeConStateTable()
      Report that a ConnState session has been added or removed from the AX25Stack, but we don't know which row number it is. This is expected to be called from a thread other than the AWT dispatch thread.