Interface ReactiveInsertOperation.TerminatingInsert<T>

All Known Subinterfaces:
ReactiveInsertOperation.InsertWithTable<T>, ReactiveInsertOperation.ReactiveInsert<T>
Enclosing interface:
ReactiveInsertOperation

public static interface ReactiveInsertOperation.TerminatingInsert<T>
Trigger INSERT execution by calling one of the terminating methods.
  • Method Summary

    Modifier and Type
    Method
    Description
    reactor.core.publisher.Mono<T>
    using(T object)
    Insert exactly one Object.
  • Method Details

    • using

      reactor.core.publisher.Mono<T> using(T object)
      Insert exactly one Object.
      Parameters:
      object - Object to insert; must not be null.
      Returns:
      the write result for this operation.
      Throws:
      IllegalArgumentException - if Object is null.
      See Also:
      • Mono