using Neo.Afx.Services;
namespace Neo.Afx.WinService.Workflows
{
///
/// A task that does nothing and is always successful.
///
public sealed class DefaultTask : Worker
{
///
/// Runs the task with the given ID - this does nothing.
///
/// The task ID.
/// true always.
public bool Run(long taskID)
{
return true;
}
}
}