/// <summary> /// Registers SideChannel to the Academy to send and receive data with Python. /// If IsCommunicatorOn is false, the SideChannel will not be registered. /// </summary> /// <param name="channel"> The side channel to be registered.</param> public void RegisterSideChannel(SideChannel channel) { LazyInitialize(); Communicator?.RegisterSideChannel(channel); }