Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fmachado091/6c85a7d7f972d101af60ce7321867ddf to your computer and use it in GitHub Desktop.
Save fmachado091/6c85a7d7f972d101af60ce7321867ddf to your computer and use it in GitHub Desktop.
@Component
public class HelloPubSubPublisher extends PubSubPublisher {
@Autowired
public HelloPubSubPublisher(PubSubTemplate pubSubTemplate) {
super(pubSubTemplate);
}
@Override
protected String topic() {
return "hello-pubsub";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment