MCPcopy Create free account
hub / github.com/apache/storm / getDes

Method getDes

storm-client/src/jvm/org/apache/storm/utils/Utils.java:727–738  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

725 }
726
727 private static TDeserializer getDes() {
728 try {
729 TDeserializer des = threadDes.get();
730 if (des == null) {
731 des = new TDeserializer();
732 threadDes.set(des);
733 }
734 return des;
735 } catch (Exception e) {
736 throw new RuntimeException(e);
737 }
738 }
739
740 public static void sleepNoSimulation(long millis) {
741 try {

Callers 1

thriftDeserializeMethod · 0.95

Calls 2

getMethod · 0.65
setMethod · 0.65

Tested by

no test coverage detected