view Implab/Diagnostics/TraceEventType.cs @ 121:62d2f1e98c4e v2

working version of AsyncQueue and batch operations tests
author cin
date Mon, 12 Jan 2015 18:19:41 +0300
parents a43745f81f10
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Implab.Diagnostics {
    public enum TraceEventType {
        Information = 1,
        Warning,
        Error,
        OperationStarted,
        OperationCompleted,
        Attach,
        Detach,
        Enter,
        Leave
    }
}