-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from NikitaKatkov/reactive-blocking-annotations
[Non]BlockingContext annotations introduced
- Loading branch information
Showing
4 changed files
with
175 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
common/src/main/java/org/jetbrains/annotations/Blocking.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
16 changes: 16 additions & 0 deletions
16
common/src/main/java/org/jetbrains/annotations/NonBlocking.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
71 changes: 71 additions & 0 deletions
71
java8/src/main/java/org/jetbrains/annotations/BlockingExecutor.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,71 @@ | ||
/* | ||
* Copyright 2000-2021 JetBrains s.r.o. | ||
* | ||
* 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 | ||
* | ||
* https://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 org.jetbrains.annotations; | ||
|
||
import java.lang.annotation.*; | ||
|
||
/** | ||
* Indicates that the annotated executor (CoroutineContext, Scheduler) | ||
* allows blocking methods execution.<br><br> | ||
* <p> | ||
* If a given executor does not allow blocking calls, {@link NonBlockingExecutor} should be used.<br><br> | ||
* <p> | ||
* | ||
* Example 1 (Kotlin coroutines): | ||
* <pre> | ||
* {@code | ||
* class BlockingExampleService { | ||
* val dispatcher: @BlockingExecutor CoroutineContext | ||
* get() { ... } | ||
* | ||
* suspend fun foo() { | ||
* val result = withContext(dispatcher) { | ||
* blockingBuzz() // no IDE warning | ||
* } | ||
* } | ||
* | ||
* @Blocking fun blockingBuzz() { ... } | ||
* } | ||
* } | ||
* </pre><br> | ||
* <p> | ||
* Example 2 (Java with Reactor framework): | ||
* <pre> | ||
* {@code | ||
* class BlockingExampleService { | ||
* private static final @BlockingExecutor Scheduler blockingScheduler = | ||
* Schedulers.newBoundedElastic(4, 10, "executor"); | ||
* | ||
* public Flux<String> foo(Flux<String> urls) { | ||
* return urls.publishOn(blockingScheduler) | ||
* .map(url -> blockingBuzz(url)); // no IDE warning | ||
* } | ||
* | ||
* @Blocking | ||
* private String blockingBuzz(String url) { ... } | ||
* } | ||
* } | ||
* </pre> | ||
* <p> | ||
* @see Blocking | ||
* @see NonBlocking | ||
*/ | ||
@Documented | ||
@Retention(RetentionPolicy.CLASS) | ||
@Target({ElementType.TYPE, ElementType.TYPE_USE}) | ||
public @interface BlockingExecutor { | ||
} |
72 changes: 72 additions & 0 deletions
72
java8/src/main/java/org/jetbrains/annotations/NonBlockingExecutor.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,72 @@ | ||
/* | ||
* Copyright 2000-2021 JetBrains s.r.o. | ||
* | ||
* 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 | ||
* | ||
* https://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 org.jetbrains.annotations; | ||
|
||
import java.lang.annotation.*; | ||
|
||
/** | ||
* Indicates that the annotated executor (CoroutineContext, Scheduler) | ||
* does not allow blocking methods execution.<br><br> | ||
* <p> | ||
* | ||
* If a given executor allows blocking calls, {@link BlockingExecutor} should be used.<br><br> | ||
* <p> | ||
* | ||
* Example 1 (Kotlin coroutines): | ||
* <pre> | ||
* {@code | ||
* class NonBlockingExampleService { | ||
* val dispatcher: @NonBlockingExecutor CoroutineContext | ||
* get() { ... } | ||
* | ||
* suspend fun foo() { | ||
* val result = withContext(dispatcher) { | ||
* blockingBuzz() // IDE warning: `Possibly blocking call in non-blocking context` | ||
* } | ||
* } | ||
* | ||
* @Blocking fun blockingBuzz() { ... } | ||
* } | ||
* } | ||
* </pre><br> | ||
* <p> | ||
* Example 2 (Java with Reactor framework): | ||
* <pre> | ||
* {@code | ||
* class NonBlockingExampleService { | ||
* private static final @NonBlockingExecutor Scheduler operationsScheduler = | ||
* Schedulers.newParallel("parallel"); | ||
* | ||
* public Flux<String> foo(Flux<String> urls) { | ||
* return urls.publishOn(operationsScheduler) | ||
* .filter(url -> blockingBuzz(url) != null); // IDE warning: `Possibly blocking call in non-blocking context` | ||
* } | ||
* | ||
* @Blocking | ||
* private String blockingBuzz(String url) { ... } | ||
* } | ||
* } | ||
* </pre> | ||
* <p> | ||
* @see Blocking | ||
* @see NonBlocking | ||
*/ | ||
@Documented | ||
@Retention(RetentionPolicy.CLASS) | ||
@Target({ElementType.TYPE, ElementType.TYPE_USE}) | ||
public @interface NonBlockingExecutor { | ||
} |