Created
June 10, 2019 12:40
-
-
Save satr/44e4c9f40bf987c00ea199f88dc8d07c to your computer and use it in GitHub Desktop.
SimpleAlexaSkillStreamHandler with CustomProactiveSubscriptionChangedRequestHandler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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