forked from helidon-io/helidon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wait for thread completion only if interrupted flag set (helidon-io#1843
) * Wait for a thread to complete only if its interrupted flag has been set and it is still running. Some new tests. Signed-off-by: Santiago Pericasgeertsen <santiago.pericasgeertsen@oracle.com> * Updated copyright header. Signed-off-by: Santiago Pericasgeertsen <santiago.pericasgeertsen@oracle.com>
- Loading branch information
Showing
3 changed files
with
80 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
...lt-tolerance/src/test/java/io/helidon/microprofile/faulttolerance/TimeoutNoRetryBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright (c) 2020 Oracle and/or its affiliates. | ||
* | ||
* 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 io.helidon.microprofile.faulttolerance; | ||
|
||
import java.time.temporal.ChronoUnit; | ||
import javax.enterprise.context.Dependent; | ||
|
||
import org.eclipse.microprofile.faulttolerance.Timeout; | ||
import org.eclipse.microprofile.faulttolerance.exceptions.TimeoutException; | ||
|
||
/** | ||
* Class TimeoutNoRetryBean. | ||
*/ | ||
@Dependent | ||
public class TimeoutNoRetryBean { | ||
|
||
@Timeout(value=1000, unit=ChronoUnit.MILLIS) | ||
public String forceTimeoutSleep() throws InterruptedException, TimeoutException { | ||
FaultToleranceTest.printStatus("TimeoutNoRetryBean::forceTimeout()", "failure"); | ||
Thread.sleep(2000); | ||
return "failure"; | ||
} | ||
|
||
@Timeout(value=1000, unit=ChronoUnit.MILLIS) | ||
public String forceTimeoutLoop() throws TimeoutException { | ||
FaultToleranceTest.printStatus("TimeoutNoRetryBean::forceTimeoutLoop()", "failure"); | ||
long start = System.currentTimeMillis(); | ||
while (System.currentTimeMillis() - start < 2000) { | ||
// busy loop | ||
} | ||
return "success"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters