Interface Digipeater.TXIGatedStationStatusListener

All Known Implementing Classes:
TXIGatedStationsTableModel
Enclosing class:
Digipeater

public static interface Digipeater.TXIGatedStationStatusListener
Interface for listeners to be informed of changes to the list of Tx I-gated stations. Note that calls to these methods are on the thread delivering frames to the digipeater logic (usually, the AX25Stack parsing thread).
Author:
Andrew Pavlin, KA2DDO
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Inform listener that a station has been added to the list of I-gated stations.
    void
    Inform listener that a station is no longer being I-gated by this station (timed out).
    void
    Inform listener that a station has been forwarded again.
  • Method Details

    • txIGatedStationAdded

      void txIGatedStationAdded(int index)
      Inform listener that a station has been added to the list of I-gated stations.
      Parameters:
      index - position in list of I-gated stations
    • txIGatedStationUpdated

      void txIGatedStationUpdated(int index)
      Inform listener that a station has been forwarded again.
      Parameters:
      index - position in list of I-gated stations
    • txIGatedStationDeleted

      void txIGatedStationDeleted(int index)
      Inform listener that a station is no longer being I-gated by this station (timed out).
      Parameters:
      index - position in list of I-gated stations