dcapwell commented on code in PR #28: URL: https://github.com/apache/cassandra-accord/pull/28#discussion_r1092243875
########## accord-core/src/test/java/accord/impl/basic/DelayedExecutorService.java: ########## @@ -0,0 +1,107 @@ +package accord.impl.basic; + +import accord.burn.random.Decision; +import accord.burn.random.IntRange; +import accord.burn.random.RandomInt; +import accord.burn.random.SegmentedIntRange; +import org.apache.cassandra.concurrent.FutureTask; + +import java.util.Collections; +import java.util.List; +import java.util.Random; +import java.util.concurrent.AbstractExecutorService; +import java.util.concurrent.Callable; +import java.util.concurrent.Executors; +import java.util.concurrent.TimeUnit; + +public class DelayedExecutorService extends AbstractExecutorService Review Comment: used `SimulatedDelayedExecutorService` to denote both semantics; simulated + delayed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

