@Input
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();
}