Interface AprsMessageListener

All Known Implementing Classes:
AbstractGpsConnector, Chat, Digipeater, DXTableModel, LocalObjectTracker, MessageFilterPane, NWSZoneLayer, QueryResponder, SerialGpsConnector, SnifferDataModel, StationTracker
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface AprsMessageListener
This interface defines how a code segment waiting for a response message is informed when the response is received. Listeners should be registered by calling APRSStack.addAprsMessageListener(AprsMessageListener) and unregistered when no longer needed by calling APRSStack.removeAprsMessageListener(AprsMessageListener).
Author:
Andrew Pavlin, KA2DDO
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Delivers the next message received by YAAC that is an APRS message.
  • Method Details

    • aprsMessageReceived

      void aprsMessageReceived(Message msg)
      Delivers the next message received by YAAC that is an APRS message.
      Parameters:
      msg - some subclass of Message containing the message contents; the message should have an AX25Frame connected to it
      See Also: