mirror of
https://github.com/XFox111/GZipCompression.git
synced 2026-04-22 06:16:18 +03:00
8eba1def4b
* Code refactoring * Rebuilt project for .NET Core 3.1 * Updated code comments
20 lines
488 B
C#
20 lines
488 B
C#
namespace GZipTest
|
|
{
|
|
/// <summary>
|
|
/// Processing module interface
|
|
/// </summary>
|
|
interface IProcessingModule
|
|
{
|
|
/// <summary>
|
|
/// Indicates wether the module is processing a file
|
|
/// </summary>
|
|
bool IsWorking { get; }
|
|
|
|
/// <summary>
|
|
/// Starts the job
|
|
/// </summary>
|
|
/// <param name="input">Source file path (relative or absolute)</param>
|
|
/// <param name="output">Destination file path (relative or absolute)</param>
|
|
void Run(string input, string output);
|
|
}
|
|
} |