// Copyright (C) 2024, 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 System; using CoCoL; namespace Duplicati.Library.Main.Operation.Backup { /// /// Static typed definitions of channels used for the backup process /// internal static class Channels { /// /// Requests to the backend are send over this channel and picked up by the class /// public static readonly ChannelMarkerWrapper BackendRequest = new ChannelMarkerWrapper(new ChannelNameAttribute("BackendRequests")); /// /// When the backup completes, all in-progress archives are sent from the to the /// public static readonly ChannelMarkerWrapper SpillPickup = new ChannelMarkerWrapper(new ChannelNameAttribute("SpillPickup")); /// /// All data blocks are sent during the scanning to the who bundles them in compressed archives /// public static readonly ChannelMarkerWrapper OutputBlocks = new ChannelMarkerWrapper(new ChannelNameAttribute("OutputBlocks")); /// /// If a file has changes in the metadata, it is sent to the where it is read /// public static readonly ChannelMarkerWrapper AcceptedChangedFile = new ChannelMarkerWrapper(new ChannelNameAttribute("AcceptedChangedFile")); /// /// If a file has changes in the metadata, it is sent to the where it is read /// public static readonly ChannelMarkerWrapper StreamBlock = new ChannelMarkerWrapper(new ChannelNameAttribute("StreamBlockSplitter")); /// /// After metadata has been processed and collected, the sends the file data to the /// public static readonly ChannelMarkerWrapper ProcessedFiles = new ChannelMarkerWrapper(new ChannelNameAttribute("ProcessedFiles")); /// /// When enumerating the source folders, all discovered paths are sent by the to the /// public static readonly ChannelMarkerWrapper SourcePaths = new ChannelMarkerWrapper(new ChannelNameAttribute("SourcePaths")); /// /// All progress events are communicated over this channel, to ensure that parallel progress is reported as a if it was sequential /// public static readonly ChannelMarkerWrapper ProgressEvents = new ChannelMarkerWrapper(new ChannelNameAttribute("ProgressEvents")); } }