Module org.jooq
Package org.jooq

Interface TransactionalPublishable<T>

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface TransactionalPublishable<T>
An FunctionalInterface that wraps transactional code for reactive usage.
Author:
Lukas Eder
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull org.reactivestreams.Publisher<T>
    run(Configuration configuration)
    Run the transactional code.
  • Method Details

    • run

      @NotNull @NotNull org.reactivestreams.Publisher<T> run(Configuration configuration)
      Run the transactional code.
      Parameters:
      configuration - The Configuration in whose context the transaction is run.
      Returns:
      The outcome of the transaction.