浏览代码

Making the message queue internal (#3468)

/asymm-envs
GitHub 4 年前
当前提交
97876c18
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 2
      com.unity.ml-agents/Runtime/SideChannel/SideChannel.cs

2
com.unity.ml-agents/Runtime/SideChannel/SideChannel.cs


{
// The list of messages (byte arrays) that need to be sent to Python via the communicator.
// Should only ever be read and cleared by a ICommunicator object.
public List<byte[]> MessageQueue = new List<byte[]>();
internal List<byte[]> MessageQueue = new List<byte[]>();
/// <summary>
/// An int identifier for the SideChannel. Ensures that there is only ever one side channel

正在加载...
取消
保存