Ejemplo n.º 1
0
        public void WriteCommandsToFile(Channel channel)
        {
            channel.NeedsToWrite = false;
            string filepath = GetChannelOutboundFilepath(channel);
            var    writer   = new CommandWriter();
            var    cmdset   = new CommandSet(channel.GetOutboundCommands(), channel.LastInboundProcessedUtc);

            writer.WriteCommandsToFile(cmdset, filepath);
        }