2021-07-27 01:25:04 +02:00
|
|
|
|
using ChanSort.Api;
|
2014-05-25 16:13:15 +02:00
|
|
|
|
|
|
|
|
|
|
namespace ChanSort.Loader.GlobalClone
|
|
|
|
|
|
{
|
2020-05-03 18:07:28 +02:00
|
|
|
|
internal class GcChannel<TNode> : ChannelInfo
|
2014-05-25 16:13:15 +02:00
|
|
|
|
{
|
2020-05-03 18:07:28 +02:00
|
|
|
|
internal TNode Node;
|
2017-11-30 14:50:22 +01:00
|
|
|
|
internal bool IsDisabled;
|
2014-05-25 16:13:15 +02:00
|
|
|
|
|
|
|
|
|
|
#region ctor()
|
2020-05-03 18:07:28 +02:00
|
|
|
|
internal GcChannel(SignalSource source, int index, TNode node)
|
2014-05-25 16:13:15 +02:00
|
|
|
|
{
|
|
|
|
|
|
this.SignalSource = source;
|
2021-07-27 01:25:04 +02:00
|
|
|
|
this.RecordIndex = index;
|
2020-12-05 21:55:43 +01:00
|
|
|
|
this.RecordOrder = index;
|
2020-05-03 18:07:28 +02:00
|
|
|
|
this.Node = node;
|
2014-05-25 16:13:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|