Class CbusTurnout

All Implemented Interfaces:
PropertyChangeListener, Comparable<NamedBean>, EventListener, PropertyChangeProvider, DigitalIO, AbstractMRListener, CanListener, CbusEventInterface, NamedBean, Turnout, VariableControlSpanBean

Turnout for CBUS connections.
  • Constructor Details

  • Method Details

    • requestUpdateFromLayout

      public void requestUpdateFromLayout()
      Request an update on status by sending CBUS request message to thrown address.
      Specified by:
      requestUpdateFromLayout in interface DigitalIO
      Overrides:
      requestUpdateFromLayout in class AbstractTurnout
    • forwardCommandChangeToLayout

      protected void forwardCommandChangeToLayout(int newState)
      Handle a request to change state, typically by sending a message to the layout in some child class. Public version (used by TurnoutOperator) sends the current commanded state without changing it. Implementing classes will typically check the value of s and send a system specific sendMessage command. Sends a CBUS event.
      Specified by:
      forwardCommandChangeToLayout in class AbstractTurnout
      Parameters:
      newState - new state value
    • getAddrThrown

      Package method returning CanMessage for the Thrown Turnout Address.
      Returns:
      CanMessage with the Thrown Address
    • getAddrClosed

      Package method returning CanMessage for the Closed Turnout Address
      Returns:
      CanReply with the Closed Address
    • message

      public void message(CanMessage f)
      Called when an outgoing message is sent to the CAN Network.
      Specified by:
      message in interface CanListener
      Parameters:
      f - the CanMessage being sent.
      See Also:
    • reply

      public void reply(CanReply origf)
      Called when an incoming CanFrame is received from the CAN Network.
      Specified by:
      reply in interface CanListener
      Parameters:
      origf - the CanReply being received.
      See Also:
    • turnoutPushbuttonLockout

      protected void turnoutPushbuttonLockout(boolean locked)
      Specified by:
      turnoutPushbuttonLockout in class AbstractTurnout
    • canInvert

      public boolean canInvert()
      Determine if the turnouts can be inverted. If true, inverted turnouts are supported.
      Specified by:
      canInvert in interface Turnout
      Overrides:
      canInvert in class AbstractTurnout
      Returns:
      invert supported
    • getBeanOnMessage

      Get event for primary Bean On Action. e.g. without inversion, Light On.
      Specified by:
      getBeanOnMessage in interface CbusEventInterface
      Returns:
      Event for the Action, may be null
    • getBeanOffMessage

      Get event for primary Bean Off Action. e.g. without Inversion Light Off.
      Specified by:
      getBeanOffMessage in interface CbusEventInterface
      Returns:
      Event for the Action, may be null
    • dispose

      public void dispose()
      Deactivate this object, so that it releases as many resources as possible and no longer effects others.

      For example, if this object has listeners, after a call to this method it should no longer notify those listeners. Any native or system-wide resources it maintains should be released, including threads, files, etc.

      It is an error to invoke any other methods on this object once dispose() has been called. Note, however, that there is no guarantee about behavior in that case.

      Afterwards, references to this object may still exist elsewhere, preventing its garbage collection. But it's formally dead, and shouldn't be keeping any other objects alive. Therefore, this method should null out any references to other objects that this NamedBean contained.

      Specified by:
      dispose in interface NamedBean
      Overrides:
      dispose in class AbstractTurnout