@Input

From NovaOrdis Knowledge Base
Revision as of 05:29, 24 October 2018 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Overview

The @Input annotation designates a factory method for an input channel, through which received messages enter the application

public interface Sink {
  String INPUT = "input";

  @Input(Sink.INPUT)
  SubscribableChannel input();
}