Interface ParsedAX25MessageListener

All Known Implementing Classes:
AbstractGpsConnector, Digipeater, 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 ParsedAX25MessageListener
This interface defines how a code segment waiting for a response message is informed when the response is received. Such implementors should be registered with the AX25Stack method AX25Stack.addParsedAX25MessageListener(ParsedAX25MessageListener).
Author:
Andrew Pavlin, KA2DDO
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Delivers the next message received by YAAC that is some sort of parsed AX.25 higher-level message.
  • Method Details

    • parsedAX25MessageReceived

      void parsedAX25MessageReceived(byte pid, AX25Message msg)
      Delivers the next message received by YAAC that is some sort of parsed AX.25 higher-level message.
      Parameters:
      pid - AX.25 protocol ID
      msg - some subclass of AX25Message containing the message contents; the message should have an AX25Frame connected to it
      See Also: