Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
Commit the initial changes again - this time the diffs will show the …
Browse files Browse the repository at this point in the history
…exact changes over the Scala code.
  • Loading branch information
szegedi committed Jul 5, 2010
1 parent 3d94d77 commit 1a3d112
Show file tree
Hide file tree
Showing 21 changed files with 18 additions and 2,339 deletions.
Expand Up @@ -11,6 +11,7 @@
import java.util.ArrayList;
import java.util.List;
import java.util.Iterator;
import java.util.concurrent.*;

/**
* Provides default implementations of {@link ExecutorService}
Expand Down
342 changes: 0 additions & 342 deletions src/main/java/com/twitter/actors/threadpool/BlockingQueue.java

This file was deleted.

Expand Up @@ -5,6 +5,7 @@
*/

package com.twitter.actors.threadpool;
import java.util.concurrent.*;

/**
* A service that decouples the production of new asynchronous tasks
Expand Down
Expand Up @@ -6,7 +6,7 @@

package com.twitter.actors.threadpool;
import com.twitter.actors.threadpool.*; // for javadoc (till 6280605 is fixed)

import java.util.concurrent.*;
/**
* A {@link CompletionService} that uses a supplied {@link Executor}
* to execute tasks. This class arranges that submitted tasks are,
Expand Down
Expand Up @@ -9,7 +9,7 @@
import com.twitter.actors.threadpool.*; // for javadoc (till 6280605 is fixed)
import java.util.List;
import java.util.Collection;

import java.util.concurrent.*;
/**
* An {@link Executor} that provides methods to manage termination and
* methods that can produce a {@link Future} for tracking progress of
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/twitter/actors/threadpool/Executors.java
Expand Up @@ -13,7 +13,7 @@
import java.security.AccessControlException;
import java.util.List;
import java.util.Collection;

import java.util.concurrent.*;
/**
* Factory and utility methods for {@link Executor}, {@link
* ExecutorService}, {@link ScheduledExecutorService}, {@link
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/twitter/actors/threadpool/Future.java
Expand Up @@ -6,6 +6,7 @@

package com.twitter.actors.threadpool;
import com.twitter.actors.threadpool.*; // for javadoc (till 6280605 is fixed)
import java.util.concurrent.TimeUnit;

/**
* A <tt>Future</tt> represents the result of an asynchronous
Expand Down

0 comments on commit 1a3d112

Please sign in to comment.