コード例 #1
0
ファイル: Component.cs プロジェクト: TobyXYan/SyncAsyncSystem
        protected ICommandProxy EnqueueCommand(SimpleCommandDelegate commandDelegate, string description)
        {
            var command = CreateCommand(commandDelegate, description);

            _invoker.Submit(command);
            return(command);
        }