Skip to content
This repository has been archived by the owner on Mar 25, 2018. It is now read-only.

Commit

Permalink
Merge pull request #1533 from maginatics/deprecate-executor-service-g…
Browse files Browse the repository at this point in the history
…etters

Deprecate ExecutorService getters
  • Loading branch information
Adrian Cole committed Apr 12, 2013
2 parents f81d292 + 4037585 commit 6031400
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions core/src/main/java/org/jclouds/rest/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6031400

Please sign in to comment.