Interface ConcurrentCachedGenerator.Generator<T>
-
- Type Parameters:
T
- the type of the generated items
- All Superinterfaces:
Seedable
- Enclosing class:
- ConcurrentCachedGenerator<T>
public static interface ConcurrentCachedGenerator.Generator<T> extends Seedable
Defines a generic generator of typeT
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
next()
Returns the next value in the underlying generated sequence.
-
-
-
Method Detail
-
next
T next()
Returns the next value in the underlying generated sequence.- Returns:
- the next generated value
-
-