Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

ComponentCommunicationsInterface objects define communication interfaces that components use to communicate with each other. To publish your ability to support communication between components, call RegisterInterface passing an initialised ComponentCommunicationsInterface object.

Code Block
languagecpp
WG_COMPONENT_INTERFACE(ComponentCommunicationsInterface)
	ConnectedFunc						CommsConnected;
	AcceptFunc							CommsAccept;
	DisconnectFunc						CommsClose;
	SendFunc							CommsRecv;
	RecvBroadcastFunc					CommsRecvBroadcast;
	MulticastNofifyFunc					CommsMulticastNotify;
	MulticastReceiveFunc				CommsMulticastReceive;
};

...