aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs
blob: 3677e0ce7ab5805d5d323c7076a65dd47983f5b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Tango.Pulse
{
    /// <summary>
    /// Represents a twn file spooling method.
    /// </summary>
    public enum SpoolingMethods
    {
        //Spool per segment. (default)
        SpoolPerSegment = 0,
        //Spool per copy.
        SpoolPerCopy = 1,
        //Single spool for all segments.
        SingleSpool = 2,
    }
}