Module com.speedment.runtime.bulk
Package com.speedment.runtime.bulk
Interface BulkOperation.Builder.HasValues<ENTITY,B>
-
- All Known Subinterfaces:
BulkOperation.Builder.Persist<ENTITY>
- Enclosing interface:
- BulkOperation.Builder
public static interface BulkOperation.Builder.HasValues<ENTITY,B>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Bvalues(Supplier<Stream<? extends ENTITY>> generatorSupplier)Specifies a Supplier of a Stream, whereby the stream's elements will be persisted using the given manager.
-
-
-
Method Detail
-
values
B values(Supplier<Stream<? extends ENTITY>> generatorSupplier)
Specifies a Supplier of a Stream, whereby the stream's elements will be persisted using the given manager.- Parameters:
generatorSupplier- to apply when constructing entities- Returns:
- a builder where the given generatorSupplier has been applied
-
-