public static interface ReactiveInsertOperation.TerminatingInsert<T>
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<T> |
all(Collection<? extends T> objects)
Insert a collection of objects.
|
reactor.core.publisher.Mono<T> |
one(T object)
Insert exactly one object.
|
reactor.core.publisher.Mono<T> one(T object)
object - must not be null.Mono emitting the inserted object when operation has completed. Never null.IllegalArgumentException - if object is null.reactor.core.publisher.Flux<T> all(Collection<? extends T> objects)
objects - must not be null.objects ony by one. Never null.IllegalArgumentException - if objects is null.Copyright © 2011–2018 Pivotal Software, Inc.. All rights reserved.