Class TseDataLink

java.lang.Object
com.google.common.util.concurrent.AbstractService
org.yamcs.tctm.AbstractLink
org.yamcs.tctm.TseDataLink
All Implemented Interfaces:
com.google.common.util.concurrent.Service, SystemParametersProducer, Link

public class TseDataLink extends AbstractLink
  • Constructor Details

    • TseDataLink

      public TseDataLink()
  • Method Details

    • 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 AbstractLink
      config - - the configuration - cannot be null (but can be empty)
    • getDetailedStatus

      public String getDetailedStatus()
      Specified by:
      getDetailedStatus in interface Link
      Overrides:
      getDetailedStatus in class AbstractLink
      Returns:
      more detailed status information
    • getDataInCount

      public long getDataInCount()
    • getDataOutCount

      public long getDataOutCount()
    • resetCounters

      public void resetCounters()
    • 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
    • doEnable

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

      protected void doDisable() throws Exception
      Overrides:
      doDisable in class AbstractLink
      Throws:
      Exception
    • 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