Interface AsyncTransactionApi<T>

All Known Implementing Classes:
NoOpAsyncTransactionApi, RabbitAsyncTransactionApiImpl
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 AsyncTransactionApi<T>
A AsyncTransactionApi accepts TransactionCommands and processes them asynchronously.
Author:
Heiko Scherrer
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(T command)
    Process the given command.
  • Method Details

    • process

      void process(T command)
      Process the given command.
      Parameters:
      command - Command to process