Skip to content

Commit

Permalink
Specified explicit set of currently supported executor classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Katkov authored and Nikita Katkov committed Sep 28, 2021
1 parent 5b314f1 commit 6c46184
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import java.lang.annotation.*;

/**
* Indicates that the annotated executor (e.g. coroutine dispatcher, scheduler, etc.)
* Indicates that the annotated executor (CoroutineContext, Scheduler)
* allows blocking methods execution.
*
* If a given executor does not allow blocking calls, {@link NonBlockingExecutor} should be used.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import java.lang.annotation.*;

/**
* Indicates that the annotated executor (e.g. coroutine dispatcher, scheduler, etc.)
* Indicates that the annotated executor (CoroutineContext, Scheduler)
* does not allow blocking methods execution.
*
* If a given executor allows blocking calls, {@link BlockingExecutor} should be used.
Expand Down

0 comments on commit 6c46184

Please sign in to comment.