Skip to content

Commit

Permalink
change: rename to FlowSched
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Oct 25, 2023
1 parent 1018b12 commit 96bad8f
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 24 deletions.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = 'ATaskScheduler'
rootProject.name = 'FlowSched'

4 changes: 0 additions & 4 deletions src/main/java/com/ishland/atasksched/executor/LockToken.java

This file was deleted.

1 change: 0 additions & 1 deletion src/main/java/com/ishland/atasksched/package-info.java

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.ishland.atasksched.executor;
package com.ishland.flowsched.executor;

import com.ishland.atasksched.structs.DynamicPriorityQueue;
import com.ishland.flowsched.structs.DynamicPriorityQueue;
import it.unimi.dsi.fastutil.objects.Object2ReferenceOpenHashMap;

import java.util.ArrayDeque;
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/ishland/flowsched/executor/LockToken.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.ishland.flowsched.executor;

public interface LockToken {
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ishland.atasksched.executor;
package com.ishland.flowsched.executor;

public interface Task {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ishland.atasksched.executor;
package com.ishland.flowsched.executor;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -8,7 +8,7 @@

public class WorkerThread extends Thread {

private static final Logger LOGGER = LoggerFactory.getLogger("ATaskSched Executor Worker Thread");
private static final Logger LOGGER = LoggerFactory.getLogger("FlowSched Executor Worker Thread");

private final ExecutorManager executorManager;
private final AtomicBoolean shutdown = new AtomicBoolean(false);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.ishland.atasksched.executor.test;
package com.ishland.flowsched.executor.test;

import com.ishland.atasksched.executor.LockToken;
import com.ishland.atasksched.executor.ExecutorManager;
import com.ishland.atasksched.executor.Task;
import com.ishland.flowsched.executor.LockToken;
import com.ishland.flowsched.executor.ExecutorManager;
import com.ishland.flowsched.executor.Task;

import java.util.Arrays;
import java.util.concurrent.ExecutorService;
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/ishland/flowsched/package-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package com.ishland.flowsched;
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ishland.atasksched.structs;
package com.ishland.flowsched.structs;

import it.unimi.dsi.fastutil.objects.Object2IntMap;
import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ishland.atasksched.util;
package com.ishland.flowsched.util;

public class Assertions {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
package com.ishland.atasksched.executor;
package com.ishland.flowsched.executor;

import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.Mockito;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.junit.jupiter.MockitoExtension;
import org.mockito.junit.jupiter.MockitoSettings;
import org.mockito.quality.Strictness;
import org.mockito.stubbing.Answer;

import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;

import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;

@ExtendWith(MockitoExtension.class)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.ishland.atasksched.structs;
package com.ishland.flowsched.structs;

import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

Expand Down

0 comments on commit 96bad8f

Please sign in to comment.