mirror of https://github.com/apache/jclouds.git
Deprecate ExecutorService getters
This commit is contained in:
parent
f81d292f81
commit
4037585e42
|
@ -114,18 +114,36 @@ public interface Utils {
|
||||||
*/
|
*/
|
||||||
DateService date();
|
DateService date();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated will be removed in jclouds 1.7, as async interfaces are no
|
||||||
|
* longer supported.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
ListeningExecutorService getUserExecutor();
|
ListeningExecutorService getUserExecutor();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* #see #getUserExecutor
|
* #see #getUserExecutor
|
||||||
|
*
|
||||||
|
* @deprecated will be removed in jclouds 1.7, as async interfaces are no
|
||||||
|
* longer supported.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
ListeningExecutorService userExecutor();
|
ListeningExecutorService userExecutor();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated will be removed in jclouds 1.7, as async interfaces are no
|
||||||
|
* longer supported.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
ListeningExecutorService getIoExecutor();
|
ListeningExecutorService getIoExecutor();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* #see #getIoExecutor
|
* #see #getIoExecutor
|
||||||
|
*
|
||||||
|
* @deprecated will be removed in jclouds 1.7, as async interfaces are no
|
||||||
|
* longer supported.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
ListeningExecutorService ioExecutor();
|
ListeningExecutorService ioExecutor();
|
||||||
|
|
||||||
@Beta
|
@Beta
|
||||||
|
|
Loading…
Reference in New Issue