Skip to content

Instantly share code, notes, and snippets.

@dpsoft
Last active August 29, 2015 14:21
Show Gist options
  • Save dpsoft/b2c29976d405a6de6789 to your computer and use it in GitHub Desktop.
Save dpsoft/b2c29976d405a6de6789 to your computer and use it in GitHub Desktop.
TraceLocalKey<String> stringKey = TraceLocal.newTraceLocalKey();
TraceLocal.store(stringKey, "Pepe");
Option<String> retrieve = TraceLocal.retrieve(stringKey); //option
String retrieve = TraceLocal.get(stringKey);
System.out.println(retrieve);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment