Delegate DiskSegmentCreated<TKey, TValue>
Event is fired when the disk segment is created.
Namespace: Tenray.ZoneTree
Assembly: ZoneTree.dll
Syntax
public delegate void DiskSegmentCreated<TKey, TValue>(IZoneTreeMaintenance<TKey, TValue> zoneTree, IDiskSegment<TKey, TValue> newDiskSegment, bool isBottomSegment)
Parameters
| Type | Name | Description |
|---|---|---|
| IZoneTreeMaintenance<TKey, TValue> | zoneTree | The ZoneTree maintenance |
| IDiskSegment<TKey, TValue> | newDiskSegment | The new disk segment |
| bool | isBottomSegment | True if the bottom disk segment is created, otherwise false. |
Type Parameters
| Name | Description |
|---|---|
| TKey | The key type |
| TValue | The value type |