Package net.bytebuddy.agent.builder
Class AgentBuilder.RedefinitionStrategy.BatchAllocator.Slicing.SlicingIterable
- java.lang.Object
-
- net.bytebuddy.agent.builder.AgentBuilder.RedefinitionStrategy.BatchAllocator.Slicing.SlicingIterable
-
- All Implemented Interfaces:
java.lang.Iterable<java.util.List<java.lang.Class<?>>>
- Enclosing class:
- AgentBuilder.RedefinitionStrategy.BatchAllocator.Slicing
protected static class AgentBuilder.RedefinitionStrategy.BatchAllocator.Slicing.SlicingIterable extends java.lang.Object implements java.lang.Iterable<java.util.List<java.lang.Class<?>>>
An iterable that slices batches into parts of a minimum and maximum size.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
AgentBuilder.RedefinitionStrategy.BatchAllocator.Slicing.SlicingIterable.SlicingIterator
An iterator that slices batches into parts of a minimum and maximum size.
-
Constructor Summary
Constructors Modifier Constructor Description protected
SlicingIterable(int minimum, int maximum, java.lang.Iterable<? extends java.util.List<java.lang.Class<?>>> iterable)
Creates a new slicing iterable.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Iterator<java.util.List<java.lang.Class<?>>>
iterator()
-
-
-
Constructor Detail
-
SlicingIterable
protected SlicingIterable(int minimum, int maximum, java.lang.Iterable<? extends java.util.List<java.lang.Class<?>>> iterable)
Creates a new slicing iterable.- Parameters:
minimum
- The minimum size of any slice.maximum
- The maximum size of any slice.iterable
- The delegate iterable.
-
-