// Copyright (C) 2025, The Duplicati Team // https://duplicati.com, hello@duplicati.com // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. using CoCoL; using Duplicati.Library.Interface; namespace Duplicati.Library.Main.Operation.Backup { /// /// Static typed definitions of channels used for the backup process /// internal class Channels { /// /// When the backup completes, all in-progress archives are sent from the to the /// public readonly IChannel SpillPickup = ChannelManager.CreateChannel(); /// /// All data blocks are sent during the scanning to the who bundles them in compressed archives /// public readonly IChannel OutputBlocks = ChannelManager.CreateChannel(); /// /// If a file has changes in the metadata, it is sent to the where it is read /// public readonly IChannel AcceptedChangedFile = ChannelManager.CreateChannel(); /// /// If a file has changes in the metadata, it is sent to the where it is read /// public readonly IChannel StreamBlock = ChannelManager.CreateChannel(); /// /// After metadata has been processed and collected, the sends the file data to the /// public readonly IChannel ProcessedFiles = ChannelManager.CreateChannel(); /// /// When enumerating the source folders, all discovered paths are sent by the to the /// public readonly IChannel SourcePaths = ChannelManager.CreateChannel(); /// /// All progress events are communicated over this channel, to ensure that parallel progress is reported as a if it was sequential /// public readonly IChannel ProgressEvents = ChannelManager.CreateChannel(); } }