Last active
August 20, 2018 09:27
-
-
Save maltebucksch/325effc06a23d945e9130fa818da2064 to your computer and use it in GitHub Desktop.
EmailInput
This file contains 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
keyboardInput.filter(input -> isEmailValid(input)) | |
.map(email -> getEmailPrefix(email)) | |
.subscribe(emailPrefix -> | |
System.out.println("New User: " + emailPrefix) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment