@Input

From NovaOrdis Knowledge Base
Revision as of 20:59, 23 October 2018 by Ovidiu (talk | contribs) (→‎Overview)
Jump to navigation Jump to search

Internal

Overview

The @Input annotation identifies an input channel, through which received messages enter the application

public interface Sink {
  String INPUT = "input";

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