2007-05-16 20:28:23 +00:00
|
|
|
#region CPL License
|
|
|
|
/*
|
|
|
|
Nuclex Framework
|
2009-01-07 19:05:29 +00:00
|
|
|
Copyright (C) 2002-2009 Nuclex Development Labs
|
2007-05-16 20:28:23 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
License along with this library
|
|
|
|
*/
|
|
|
|
#endregion
|
2007-07-24 20:15:19 +00:00
|
|
|
|
2007-04-16 17:18:16 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2007-07-01 19:27:40 +00:00
|
|
|
using Nuclex.Support.Tracking;
|
|
|
|
|
|
|
|
namespace Nuclex.Support.Scheduling {
|
2007-04-16 17:18:16 +00:00
|
|
|
|
|
|
|
/// <summary>Base class for observable operations running in the background</summary>
|
2008-03-26 19:52:28 +00:00
|
|
|
public abstract class Operation : Request {
|
2007-04-16 17:18:16 +00:00
|
|
|
|
2007-07-01 19:27:40 +00:00
|
|
|
/// <summary>Launches the background operation</summary>
|
2008-02-07 21:25:34 +00:00
|
|
|
public abstract void Start();
|
2007-05-02 19:25:21 +00:00
|
|
|
|
2007-04-16 17:18:16 +00:00
|
|
|
}
|
|
|
|
|
2007-07-01 19:27:40 +00:00
|
|
|
} // namespace Nuclex.Support.Scheduling
|