Beispiel #1
0
 /// <summary>
 /// Creates mpan table with specified MPAN records capacity
 /// </summary>
 /// <param name="maxRecordsCount">MPAN records capacity</param>
 public MpanTable(int maxRecordsCount)
 {
     _table = new SizeLimitedTable <NodeGroupId, MpanContainer>(MAX_RECORDS_COUNT);
 }
Beispiel #2
0
 /// <summary>
 /// Creates span table with specified SPAN records capacity
 /// </summary>
 /// <param name="maxRecordsCount">SPAN records capacity</param>
 public SpanTable(int maxRecordsCount)
 {
     _table = new SizeLimitedTable <InvariantPeerNodeId, SpanContainer>(maxRecordsCount);
     _txSequenceNumberTable = new SizeLimitedTable <InvariantPeerNodeId, byte>(maxRecordsCount);
 }
Beispiel #3
0
 public NonceS0Storage(int capacity)
 {
     _table = new SizeLimitedTable <OrdinalPeerNodeId, NonceContainer>(capacity);
 }