Class UdpTcFrameLink

java.lang.Object
com.google.common.util.concurrent.AbstractService
All Implemented Interfaces:
com.google.common.util.concurrent.Service, Runnable, SystemParametersProducer, AggregatedDataLink, Link, LinkActionProvider, TcDataLink

public class UdpTcFrameLink extends AbstractTcFrameLink implements Runnable
Sends TC as TC frames (CCSDS 232.0-B-3) or TC frames embedded in CLTU (CCSDS 231.0-B-3).

This class implements rate limiting. args:

  • frameMaxRate: maximum number of command frames to send per second.
  • Constructor Details

    • UdpTcFrameLink

      public UdpTcFrameLink()
  • Method Details

    • getSpec

      public Spec getSpec()
      Description copied from interface: Link
      Returns the valid configuration of the input args of this link.
      Specified by:
      getSpec in interface Link
      Returns:
      the argument specification, or null if the args should not be validated.
    • init

      public void init(String yamcsInstance, String name, YConfiguration config)
      Description copied from interface: Link
      Called at startup to initialize the link.

      The config corresponds to the map that is under the link definition in yamcs.instance.yaml.

      Specified by:
      init in interface Link
      Overrides:
      init in class AbstractTcFrameLink
      config - - the configuration - cannot be null (but can be empty)
    • run

      public void run()
      Specified by:
      run in interface Runnable
    • doDisable

      protected void doDisable() throws Exception
      Overrides:
      doDisable in class AbstractLink
      Throws:
      Exception
    • doEnable

      protected void doEnable() throws Exception
      Overrides:
      doEnable in class AbstractLink
      Throws:
      Exception
    • doStart

      protected void doStart()
      Specified by:
      doStart in class com.google.common.util.concurrent.AbstractService
    • doStop

      protected void doStop()
      Specified by:
      doStop in class com.google.common.util.concurrent.AbstractService
    • getDetailedStatus

      public String getDetailedStatus()
      Description copied from interface: Link
      Returns a short detail status (one-line)
      Specified by:
      getDetailedStatus in interface Link
      Overrides:
      getDetailedStatus in class AbstractLink
    • connectionStatus

      protected Link.Status connectionStatus()
      Description copied from class: AbstractLink
      In case the link should be connected (i.e. is running and enabled) this method is called to return the actual connection status
      Specified by:
      connectionStatus in class AbstractLink