Skip to content

Instantly share code, notes, and snippets.

@alanjuden
Created January 23, 2014 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanjuden/8573050 to your computer and use it in GitHub Desktop.
Save alanjuden/8573050 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Epc
{
public interface TaskHost
{
bool IsClosing { get; set; }
void LogEvent(Task task, LogLevels logLevel, string text);
void LogException(Task task, Exception ex);
bool ForceRun { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment