Inheritance: MonoExpanderBaseInstance, IPort, IRunnable, IOutputHardware
        public void AddInstance(string instanceId, MonoExpanderInstance expanderLocal)
        {
            this.clientInstances.Add(instanceId, expanderLocal);

            expanderLocal.Initialize(
                expanderSharedFiles: Executor.Current.ExpanderSharedFiles,
                instanceId: instanceId,
                sendAction: async msg => await SendData(instanceId, msg));
        }
        public void AddInstance(string instanceId, MonoExpanderInstance expanderLocal)
        {
            this.clientInstances.Add(instanceId, expanderLocal);

            expanderLocal.Initialize(
                expanderSharedFiles: ExpanderSharedFiles,
                instanceId: instanceId,
                sendAction: async msg => await SendData(instanceId, msg));
        }