Class: Xberg::UserChunkConfig

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeUserChunkConfig

Returns a new instance of UserChunkConfig.

Parameters:

  • page_ranges: (Array[PageRange])
  • pages_per_chunk: (Integer)
  • force_chunking: (Boolean)
  • disable_chunking: (Boolean)


1973
# File 'sig/types.rbs', line 1973

def initialize: (?page_ranges: Array[PageRange], ?pages_per_chunk: Integer, ?force_chunking: bool, ?disable_chunking: bool) -> void

Instance Attribute Details

#disable_chunkingBoolean?

Returns the value of attribute disable_chunking.

Returns:

  • (Boolean, nil)


1971
1972
1973
# File 'sig/types.rbs', line 1971

def disable_chunking
  @disable_chunking
end

#force_chunkingBoolean?

Returns the value of attribute force_chunking.

Returns:

  • (Boolean, nil)


1970
1971
1972
# File 'sig/types.rbs', line 1970

def force_chunking
  @force_chunking
end

#page_rangesArray[PageRange]?

Returns the value of attribute page_ranges.

Returns:



1968
1969
1970
# File 'sig/types.rbs', line 1968

def page_ranges
  @page_ranges
end

#pages_per_chunkInteger?

Returns the value of attribute pages_per_chunk.

Returns:

  • (Integer, nil)


1969
1970
1971
# File 'sig/types.rbs', line 1969

def pages_per_chunk
  @pages_per_chunk
end