Skip to content

OcaControlNetwork#

This document describes the device side implementation of OcaControlNetwork. This class is documented in the AES70 standard as:


Overview#

Class Declaration#

The device side implementation has the following signature.

namespace aes70::device
{
  template <class Implementation>
  class OcaControlNetwork : public OcaApplicationNetwork<Implementation>
  {

  };
}

The template argument Implementation may implement the following methods.

Note

The signatures given here are just one possibility and that most methods are optional. Implement only those methods which make sense in the context of your device. See the documentation in Implementing AES70 Classes for more details.

class MyOcaControlNetworkImplementation
{
  // Methods defined by OcaControlNetwork
  OcaNetworkControlProtocol GetControlProtocol();

  // Methods defined by OcaApplicationNetwork
  OcaString GetLabel();
  void SetLabel(OcaString Label);
  OcaONo GetOwner();
  OcaApplicationNetworkServiceID GetServiceID();
  void SetServiceID(OcaApplicationNetworkServiceID Name);
  OcaList<OcaNetworkSystemInterfaceDescriptor> GetSystemInterfaces();
  void SetSystemInterfaces(OcaList<OcaNetworkSystemInterfaceDescriptor> Descriptors);
  OcaApplicationNetworkState GetState();
  OcaUint16 GetErrorCode();
  void Control(OcaApplicationNetworkCommand Command);
  std::tuple<OcaRolePath,OcaONoPath> GetPath();

  // Methods defined by OcaRoot
  OcaBoolean GetLockable();
  void SetLockNoReadWrite();
  void Unlock();
  OcaString GetRole();
  void SetLockNoWrite();
  OcaLockState GetLockState();

};

Events#