Merge pull request #1534 from maginatics/deprecate-executor-service-getters-1.6.x

Deprecate ExecutorService getters
This commit is contained in:
Adrian Cole 2013-04-12 15:39:07 -07:00
commit 53da87cba0
1 changed files with 18 additions and 0 deletions

View File

@ -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