handle<R> abstract method

Future<R> handle<R>(
  1. Command<R> command,
  2. Next<R> next
)

Обрабатывает команду и решает, когда вызвать next().

Implementation

Future<R> handle<R>(Command<R> command, Next<R> next);