diff --git a/core/src/main/java/org/jclouds/rest/Utils.java b/core/src/main/java/org/jclouds/rest/Utils.java index 44695acdcf..6104163d81 100644 --- a/core/src/main/java/org/jclouds/rest/Utils.java +++ b/core/src/main/java/org/jclouds/rest/Utils.java @@ -114,18 +114,36 @@ public interface Utils { */ DateService date(); + /** + * @deprecated will be removed in jclouds 1.7, as async interfaces are no + * longer supported. + */ + @Deprecated ListeningExecutorService getUserExecutor(); /** * #see #getUserExecutor + * + * @deprecated will be removed in jclouds 1.7, as async interfaces are no + * longer supported. */ + @Deprecated ListeningExecutorService userExecutor(); + /** + * @deprecated will be removed in jclouds 1.7, as async interfaces are no + * longer supported. + */ + @Deprecated ListeningExecutorService getIoExecutor(); /** * #see #getIoExecutor + * + * @deprecated will be removed in jclouds 1.7, as async interfaces are no + * longer supported. */ + @Deprecated ListeningExecutorService ioExecutor(); @Beta