Chunksize

public enum Chunksize

Represents a size to be used for chunk processing.

  • Tiny (16kb)

    Declaration

    Swift

    case tiny
  • Small (64kb)

    Declaration

    Swift

    case small
  • Normal (256kb)

    Declaration

    Swift

    case normal
  • Large (1mb)

    Declaration

    Swift

    case large
  • Huge (4mb)

    Declaration

    Swift

    case huge
  • Custom (user-settable)

    Declaration

    Swift

    case custom(size: Int)