Skip to content

Instantly share code, notes, and snippets.

@satr
Created June 10, 2019 12:40
Show Gist options
  • Save satr/44e4c9f40bf987c00ea199f88dc8d07c to your computer and use it in GitHub Desktop.
Save satr/44e4c9f40bf987c00ea199f88dc8d07c to your computer and use it in GitHub Desktop.
SimpleAlexaSkillStreamHandler with CustomProactiveSubscriptionChangedRequestHandler
public class SimpleAlexaSkillStreamHandler extends SkillStreamHandler {
public SimpleAlexaSkillStreamHandler() {
super(Skills.standard()
.addRequestHandler(new WelcomeRequestHandler())
.addRequestHandler(new CustomLaunchRequestHandler())
.addRequestHandler(new CustomProactiveSubscriptionChangedRequestHandler())
.build());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment