File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
src/main/java/io/reactivex Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ public interface CompletableOnSubscribe {
2323
2424 /**
2525 * Called for each CompletableObserver that subscribes.
26- * @param e the safe emitter instance, never null
26+ * @param emitter the safe emitter instance, never null
2727 * @throws Exception on error
2828 */
29- void subscribe (@ NonNull CompletableEmitter e ) throws Exception ;
29+ void subscribe (@ NonNull CompletableEmitter emitter ) throws Exception ;
3030}
3131
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ public interface FlowableOnSubscribe<T> {
2525
2626 /**
2727 * Called for each Subscriber that subscribes.
28- * @param e the safe emitter instance, never null
28+ * @param emitter the safe emitter instance, never null
2929 * @throws Exception on error
3030 */
31- void subscribe (@ NonNull FlowableEmitter <T > e ) throws Exception ;
31+ void subscribe (@ NonNull FlowableEmitter <T > emitter ) throws Exception ;
3232}
3333
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ public interface MaybeOnSubscribe<T> {
2525
2626 /**
2727 * Called for each MaybeObserver that subscribes.
28- * @param e the safe emitter instance, never null
28+ * @param emitter the safe emitter instance, never null
2929 * @throws Exception on error
3030 */
31- void subscribe (@ NonNull MaybeEmitter <T > e ) throws Exception ;
31+ void subscribe (@ NonNull MaybeEmitter <T > emitter ) throws Exception ;
3232}
3333
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ public interface ObservableOnSubscribe<T> {
2525
2626 /**
2727 * Called for each Observer that subscribes.
28- * @param e the safe emitter instance, never null
28+ * @param emitter the safe emitter instance, never null
2929 * @throws Exception on error
3030 */
31- void subscribe (@ NonNull ObservableEmitter <T > e ) throws Exception ;
31+ void subscribe (@ NonNull ObservableEmitter <T > emitter ) throws Exception ;
3232}
3333
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ public interface SingleOnSubscribe<T> {
2525
2626 /**
2727 * Called for each SingleObserver that subscribes.
28- * @param e the safe emitter instance, never null
28+ * @param emitter the safe emitter instance, never null
2929 * @throws Exception on error
3030 */
31- void subscribe (@ NonNull SingleEmitter <T > e ) throws Exception ;
31+ void subscribe (@ NonNull SingleEmitter <T > emitter ) throws Exception ;
3232}
3333
You can’t perform that action at this time.
0 commit comments