Interface ISegmentFactory<K,V>

Type Parameters:
K - key/address type
V - value/segment type

public interface ISegmentFactory<K,V>
Factory method for gap-map segments.
  • Method Summary

    Modifier and Type
    Method
    Description
    create(K begin, K end)
    Create an segment/value spanning the [begin, end) address/key range.
  • Method Details

    • create

      V create(K begin, K end)
      Create an segment/value spanning the [begin, end) address/key range.
      Parameters:
      begin - begin address
      end - end address
      Returns:
      the newly created segment