Skip to content

Instantly share code, notes, and snippets.

@chathurangat
Last active July 29, 2018 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chathurangat/f750a5a7bac927293465d04a0a8a56f0 to your computer and use it in GitHub Desktop.
Save chathurangat/f750a5a7bac927293465d04a0a8a56f0 to your computer and use it in GitHub Desktop.
import org.springframework.cloud.stream.annotation.Input;
import org.springframework.messaging.SubscribableChannel;
public interface OrderSink
{
String INPUT = "orderReceiveChannel";
@Input(INPUT)
SubscribableChannel receive();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment