Skip to content

Commit 901195e

Browse files
java-team-github-botDagger Team
authored andcommitted
Fix wording on ProducerMonitor methodStarting and ready javadocs
RELNOTES=Fix wording on ProducerMonitor methodStarting and ready javadocs PiperOrigin-RevId: 932202896
1 parent 5b8b2bd commit 901195e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dagger-producers/main/java/dagger/producers/monitoring/ProducerMonitor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ public void requested() {}
108108
* scheduling the method on the executor, and if an input has failed and the producer will be
109109
* skipped, this method will be called before {@link #failed(Throwable)} is called.
110110
*
111-
* <p>When multiple monitors are installed, the order that each monitor will call this method is
112-
* unspecified, but will remain consistent throughout the course of the execution of a component.
111+
* <p>When multiple monitors are installed, calls to this method will be in the same order as
112+
* calls to {@link #requested()}.
113113
*
114114
* <p>This implementation is a no-op.
115115
*/
@@ -119,7 +119,7 @@ public void ready() {}
119119
* Called when the producer method is about to start executing. This will be called from the same
120120
* thread as the producer method itself.
121121
*
122-
* <p>When multiple monitors are installed, calls to this method will be in the reverse order from
122+
* <p>When multiple monitors are installed, calls to this method will be in the same order as
123123
* calls to {@link #requested()}.
124124
*
125125
* <p>This implementation is a no-op.

0 commit comments

Comments
 (0)