Created
November 15, 2017 17:53
-
-
Save mikebroberts/0f8eba9b9f436d726b85c127cdc267d5 to your computer and use it in GitHub Desktop.
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 MyLambda { | |
private static final String containerId = java.util.UUID.randomUUID().toString(); | |
public String handler(String input) throws Exception { | |
Thread.sleep(5000); | |
return "This is function instance " + containerId; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment