public ListenableFuture contains()

in protosimplestore/src/main/java/com/uber/simplestore/proto/impl/SimpleProtoStoreImpl.java [92:97]


  public ListenableFuture<Boolean> contains(String key) {
    return Futures.transform(
        get(key),
        value -> value != null && value.length > 0,
        SimpleStoreConfig.getComputationExecutor());
  }