From c09392e8ac8f0d8050e42993373da586fb48e018 Mon Sep 17 00:00:00 2001 From: Nelson Tavares de Sousa <stu103017@mail.uni-kiel.de> Date: Fri, 26 Jun 2015 13:24:27 +0200 Subject: [PATCH] removed deprecated package --- .../framework/RunnableConsumerStage.java | 8 +---- .../teetime/framework/idle/IdleStrategy.java | 28 ---------------- .../teetime/framework/idle/SleepStrategy.java | 32 ------------------- .../teetime/framework/idle/YieldStrategy.java | 29 ----------------- 4 files changed, 1 insertion(+), 96 deletions(-) delete mode 100644 src/main/java/teetime/framework/idle/IdleStrategy.java delete mode 100644 src/main/java/teetime/framework/idle/SleepStrategy.java delete mode 100644 src/main/java/teetime/framework/idle/YieldStrategy.java diff --git a/src/main/java/teetime/framework/RunnableConsumerStage.java b/src/main/java/teetime/framework/RunnableConsumerStage.java index c1a78e20..506ec864 100644 --- a/src/main/java/teetime/framework/RunnableConsumerStage.java +++ b/src/main/java/teetime/framework/RunnableConsumerStage.java @@ -15,8 +15,6 @@ */ package teetime.framework; -import teetime.framework.idle.IdleStrategy; -import teetime.framework.idle.YieldStrategy; import teetime.framework.signal.ISignal; import teetime.framework.signal.TerminatingSignal; @@ -26,16 +24,12 @@ final class RunnableConsumerStage extends AbstractRunnableStage { private final InputPort<?>[] inputPorts; /** - * Creates a new instance with the {@link YieldStrategy} as default idle strategy. + * Creates a new instance. * * @param stage * to execute within an own thread */ public RunnableConsumerStage(final Stage stage) { - this(stage, new YieldStrategy()); - } - - public RunnableConsumerStage(final Stage stage, final IdleStrategy idleStrategy) { super(stage); this.inputPorts = stage.getInputPorts(); // FIXME should getInputPorts() really be defined in Stage? } diff --git a/src/main/java/teetime/framework/idle/IdleStrategy.java b/src/main/java/teetime/framework/idle/IdleStrategy.java deleted file mode 100644 index 454a1287..00000000 --- a/src/main/java/teetime/framework/idle/IdleStrategy.java +++ /dev/null @@ -1,28 +0,0 @@ -/** - * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime.sourceforge.net) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package teetime.framework.idle; - -/** - * - * @author Christian Wulf - * - * @deprecated since 1.1 - */ -@Deprecated -public interface IdleStrategy { - - void execute() throws InterruptedException; -} diff --git a/src/main/java/teetime/framework/idle/SleepStrategy.java b/src/main/java/teetime/framework/idle/SleepStrategy.java deleted file mode 100644 index aa88c78b..00000000 --- a/src/main/java/teetime/framework/idle/SleepStrategy.java +++ /dev/null @@ -1,32 +0,0 @@ -/** - * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime.sourceforge.net) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package teetime.framework.idle; - -public final class SleepStrategy implements IdleStrategy { - - private final long timeoutInMs; - - public SleepStrategy(final long timeoutInMs) { - super(); - this.timeoutInMs = timeoutInMs; - } - - @Override - public void execute() throws InterruptedException { - Thread.sleep(timeoutInMs); - } - -} diff --git a/src/main/java/teetime/framework/idle/YieldStrategy.java b/src/main/java/teetime/framework/idle/YieldStrategy.java deleted file mode 100644 index 52bddcbd..00000000 --- a/src/main/java/teetime/framework/idle/YieldStrategy.java +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime.sourceforge.net) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package teetime.framework.idle; - -/** - * @deprecated since 1.1 - */ -@Deprecated -public final class YieldStrategy implements IdleStrategy { - - @Override - public void execute() throws InterruptedException { - Thread.yield(); - } - -} -- GitLab